-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds backoff to enterprise-catalog client calls
- Loading branch information
1 parent
c13c560
commit 55b815c
Showing
3 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
""" | ||
Constants for API client | ||
""" | ||
import backoff | ||
from requests.exceptions import ConnectionError as RequestsConnectionError | ||
from requests.exceptions import HTTPError | ||
from requests.exceptions import Timeout as RequestsTimeoutError | ||
|
||
# wait_gen references the field in the backoff decorator representing | ||
# the backoff strategy for retries | ||
wait_gen = backoff.expo | ||
|
||
exception = ( | ||
RequestsConnectionError, | ||
RequestsTimeoutError, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters