Skip to content

Commit

Permalink
fix: change to mounts (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthemango authored Nov 29, 2024
1 parent 20f4123 commit 371d11a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/keycloak/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __init__(
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)

Expand Down

0 comments on commit 371d11a

Please sign in to comment.