Closed johanneskoester closed 3 months ago
[!WARNING]
Rate limit exceeded
@johanneskoester has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 20 minutes and 1 seconds before requesting another review.
How to resolve this issue?
After the wait time has elapsed, a review can be triggered using the `@coderabbitai review` command as a PR comment. Alternatively, push new commits to this PR. 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](https://coderabbit.ai/docs/faq) for further information.Commits
Files that changed from the base of the PR and between b57fbdbdc85d4287feb3aee0c7c7947f378e6a47 and 4ee057c52a8d46b9d95ba551e527d27b5871c6e2.
The recent changes enhance the Snakemake executor plugin for Google Cloud Batch by adding support for custom service accounts. Users can now specify a service account email in the documentation, which is integrated into the executor's settings and job allocation policies, improving flexibility and security in managing cloud resources. Additionally, the .gitignore
file has been updated to exclude the poetry.lock
file, reflecting a change in dependency management practices.
File | Change Summary |
---|---|
.gitignore | Added poetry.lock to ignore list to prevent tracking of the dependency lock file. |
docs/further.md | Introduced googlebatch_service_account parameter in hello_world rule for specifying service accounts. |
snakemake_executor_plugin_googlebatch/... | Added service_account attribute to ExecutorSettings class for optional service account email. |
snakemake_executor_plugin_googlebatch/... | Enhanced get_allocation_policy method and added get_service_account method for service account management. |
tests/init.py | Updated import statements and return type of get_remote_execution_settings method to reflect new module organization. |
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?
Test for PR #51.
Summary by CodeRabbit
New Features
hello_world
rule, enhancing flexibility for cloud interactions.Bug Fixes
.gitignore
to exclude thepoetry.lock
file, ensuring cleaner version control.Documentation
hello_world
rule to include the newgooglebatch_service_account
parameter, improving user guidance.