Skip to content

Commit

Permalink
fix: Implemented detailed retry error code logic
Browse files Browse the repository at this point in the history
  • Loading branch information
willguibr committed Apr 9, 2024
1 parent b3f6809 commit bdd3a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zscaler/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"QA2": "https://pdx2-zpa-config.qa2.zpath.net",
}

RETRYABLE_STATUS_CODES = {409, 429, 500, 502, 503, 504}
RETRYABLE_STATUS_CODES = {403, 409, 429, 500, 502, 503, 504}
MAX_RETRIES = 5
BACKOFF_FACTOR = 1
BACKOFF_BASE_DURATION = 2
Expand Down

0 comments on commit bdd3a2a

Please sign in to comment.