Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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