diff --git a/atlassian/rest_client.py b/atlassian/rest_client.py index a5f18c293..127e7039b 100644 --- a/atlassian/rest_client.py +++ b/atlassian/rest_client.py @@ -119,6 +119,10 @@ def __init__( self._session = requests.Session() else: self._session = session + + if proxies is not None: + self._session.proxies = self.proxies + if backoff_and_retry and int(urllib3.__version__.split(".")[0]) >= 2: # Note: we only retry on status and not on any of the # other supported reasons