Skip to content

Commit

Permalink
FT-821: Added 429 to SDK retry mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
Aryamanz29 committed Dec 1, 2024
1 parent 4b2cee2 commit fb15318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyatlan/client/atlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def get_adapter() -> logging.LoggerAdapter:
DEFAULT_RETRY = Retry(
total=3,
backoff_factor=1,
status_forcelist=[403, 500, 502, 503, 504],
status_forcelist=[403, 429, 500, 502, 503, 504],
allowed_methods=["HEAD", "GET", "OPTIONS", "POST", "PUT", "DELETE"],
raise_on_status=False,
)
Expand Down

0 comments on commit fb15318

Please sign in to comment.