-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.22.0 - rate limit being exceed #233
Comments
@jordanbcooper Exactly, thanks for the early heads up, there's a number of changes released in v0.22.0, would it be possible for you to give some more information in the number of pipelines, etc and output from your rate limit (https://developer.github.com/v3/rate_limit/). |
@rickardl I'm not the OP but I came here to check the issues page for the same reason as OP. In our case we're hitting the abuse rate limit, which I gather is separate from the usual rate limits shown in https://developer.github.com/v3/rate_limit/. Specifically the error in the check step is:
We're doing 7 get steps (total, across 3 pipelines), with
I'm not sure if the
|
An alternative to rolling back that PR would be to ensure that this line matches the requested states, which I believe would solve the issue if you are using the default. I'm not sure if there's a way to limit the query to the last N PRs (or filter on time, either absolute or delta from |
Ensure that the GraphQL query requests PRs matching the desired states, rather than requesting all PRs and filtering on the client. Fixes #233
Ensure that the GraphQL query requests PRs matching the desired states, rather than requesting all PRs and filtering on the client. Fixes #233
don't know what the cause is fully, but hopefully pinning to 0.21.0 helps telia-oss/github-pr-resource#233 Signed-off-by: Aidan Oldershaw <[email protected]>
* fix: filter pull requests on the server, not client Ensure that the GraphQL query requests PRs matching the desired states, rather than requesting all PRs and filtering on the client. Fixes #233 * fix: ensure function name reflects implementation * fix: add missing fake
Since our concourse picked up the latest version (0.22.0) we are seeing github v3 rate limits being exceeded. Cutting back to
tag: v0.21.0
appears to be working for myself and another person from the Concourse community. Possibly the new fields being grabbed adding extra calls?The text was updated successfully, but these errors were encountered: