From 34318871347b9c563d01a13796431c83b3b1d58c Mon Sep 17 00:00:00 2001 From: Nejc Habjan Date: Tue, 5 Apr 2022 01:12:40 +0200 Subject: [PATCH] fix: avoid passing redundant arguments to API --- gitlab/client.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/gitlab/client.py b/gitlab/client.py index c6ac0d179..6c3298b1f 100644 --- a/gitlab/client.py +++ b/gitlab/client.py @@ -56,8 +56,8 @@ class Gitlab: pagination: Can be set to 'keyset' to use keyset pagination order_by: Set order_by globally user_agent: A custom user agent to use for making HTTP requests. - retry_transient_errors: Whether to retry after 500, 502, 503, or - 504 responses. Defaults to False. + retry_transient_errors: Whether to retry after 500, 502, 503, 504 + or 52x responses. Defaults to False. """ def __init__( @@ -617,6 +617,7 @@ def http_request( files: Optional[Dict[str, Any]] = None, timeout: Optional[float] = None, obey_rate_limit: bool = True, + retry_transient_errors: Optional[bool] = None, max_retries: int = 10, **kwargs: Any, ) -> requests.Response: @@ -635,6 +636,8 @@ def http_request( timeout: The timeout, in seconds, for the request obey_rate_limit: Whether to obey 429 Too Many Request responses. Defaults to True. + retry_transient_errors: Whether to retry after 500, 502, 503, 504 + or 52x responses. Defaults to False. max_retries: Max retries after 429 or transient errors, set to -1 to retry forever. Defaults to 10. **kwargs: Extra options to send to the server (e.g. sudo) @@ -672,14 +675,13 @@ def http_request( # If timeout was passed into kwargs, allow it to override the default if timeout is None: timeout = opts_timeout + if retry_transient_errors is None: + retry_transient_errors = self.retry_transient_errors # We need to deal with json vs. data when uploading files json, data, content_type = self._prepare_send_data(files, post_data, raw) opts["headers"]["Content-type"] = content_type - retry_transient_errors = kwargs.get( - "retry_transient_errors", self.retry_transient_errors - ) cur_retries = 0 while True: try: