Skip to content

Commit c25ea52

Browse files
committed
Fix incorrect description in docstring
1 parent 4039cf1 commit c25ea52

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

atlassian/rest_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ def __init__(
8484
operations on many issues, and the limits require a cooling off period.
8585
The wait period before the next request increases exponentially with each
8686
failed retry. Defaults to False.
87-
retry_error_matches (list, optional): Errors to match, passed as a tuple containing
88-
the response code and the response text to match (exact match).
89-
Defaults to [(429, 'Too Many Requests')].
87+
retry_error_matches (list, optional): Errors to match, passed as a list of tuples
88+
containing the response code and the response text to match (exact match).
89+
Defaults to the rate limit error from Atlassian Cloud - [(429, 'Too Many Requests')].
9090
max_backoff_seconds (int, optional): Max backoff seconds. When backing off, requests won't
9191
wait any longer than this. Defaults to 1800.
9292
max_backoff_retries (int, optional): Maximum number of retries to try before

0 commit comments

Comments
 (0)