Skip to content
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

Handle Retry-After response header on HTTP 429 Too Many Requests responses #568

Open
leplatrem opened this issue Jun 9, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@leplatrem
Copy link
Contributor

Error https://mozilla.sentry.io/issues/4202640515/?project=6364263

Follow-up of #558 (comment)

this is interesting

@backoff.on_predicate(
    backoff.runtime,
    predicate=lambda r: r.status_code == 429,
    value=lambda r: int(r.headers.get("Retry-After")),
    jitter=None,
)
def get_url():
    return requests.get(url)
@leplatrem leplatrem added the enhancement New feature or request label Jun 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant