-
-
Notifications
You must be signed in to change notification settings - Fork 4
Conversation
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
Warning Rate limit exceeded@rustatian has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 8 minutes and 15 seconds before requesting another review. How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. WalkthroughThe updates primarily focus on version enhancements and robustness improvements. In the GitHub workflows, the linter and PHP versions have been upgraded. Meanwhile, testing in Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (4)
- .github/workflows/linters.yml (1 hunks)
- .github/workflows/linux.yml (1 hunks)
- pool/static_pool/pool_test.go (1 hunks)
- worker_watcher/worker_watcher.go (2 hunks)
Files skipped from review due to trivial changes (2)
- .github/workflows/linters.yml
- .github/workflows/linux.yml
Additional comments not posted (2)
worker_watcher/worker_watcher.go (1)
83-87
: Ensure robustness when preventing the removal of the last worker.The added logic to prevent the removal of the last worker is crucial for system stability. It's important to ensure that this behavior is well-documented and tested to prevent future errors in worker management.
pool/static_pool/pool_test.go (1)
181-182
: Ensure test coverage for the new worker removal logic.The test modification ensuring that two workers remain after attempts to remove all workers is a good addition. It's important to ensure that this test covers various edge cases and concurrency scenarios to fully validate the new behavior.
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
Signed-off-by: Valery Piashchynski <piashchynski.valery@gmail.com>
Reason for This PR
Description of Changes
License Acceptance
By submitting this pull request, I confirm that my contribution is made under
the terms of the MIT license.
PR Checklist
[Author TODO: Meet these criteria.]
[Reviewer TODO: Verify that these criteria are met. Request changes if not]
git commit -s
).CHANGELOG.md
.Summary by CodeRabbit
Chores
v1.59
.8.3
.Tests
Test_StaticPool_RemoveWorker
to check for total workers count after removal.Bug Fixes