Jonathan Mongeau
3 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/keycloak/connection.py
|
|
@ -102,7 +102,7 @@ class ConnectionManager(object): |
|
|
|
if proxies: |
|
|
|
self._s.proxies.update(proxies) |
|
|
|
|
|
|
|
self.async_s = httpx.AsyncClient(verify=verify, proxies=proxies, cert=cert) |
|
|
|
self.async_s = httpx.AsyncClient(verify=verify, mounts=proxies, cert=cert) |
|
|
|
self.async_s.auth = None # don't let requests add auth headers |
|
|
|
self.async_s.transport = httpx.AsyncHTTPTransport(retries=1) |
|
|
|
|
|
|
|