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

Update client.py allowed methods #159

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions replicate/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, api_token: Optional[str] = None) -> None:
total=5,
backoff_factor=2,
# Only retry 500s on GET so we don't unintionally mutute data
allowed_methods=["GET"],
# allowed_methods=["GET"],
# https://support.cloudflare.com/hc/en-us/articles/115003011431-Troubleshooting-Cloudflare-5XX-errors
status_forcelist=[
429,
Expand All @@ -56,7 +56,7 @@ def __init__(self, api_token: Optional[str] = None) -> None:
write_retries = Retry(
total=5,
backoff_factor=2,
allowed_methods=["POST", "PUT"],
# allowed_methods=["POST", "PUT"],
# Only retry POST/PUT requests on rate limits, so we don't unintionally mutute data
status_forcelist=[429],
)
Expand Down