Skip to content

Commit

Permalink
Merge pull request #432 from atlanhq/FT-821
Browse files Browse the repository at this point in the history
FT-821: Added `429` to SDK retry mechanism
  • Loading branch information
Aryamanz29 authored Dec 2, 2024
2 parents 4b2cee2 + fb15318 commit edd5b46
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 edd5b46

Please sign in to comment.