We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f59083 commit acf1c36Copy full SHA for acf1c36
apitally/client/client_asyncio.py
@@ -48,7 +48,7 @@ def get_http_client(self) -> httpx.AsyncClient:
48
# `proxy` parameter was added in version 0.26.0
49
return httpx.AsyncClient(base_url=self.hub_url, timeout=REQUEST_TIMEOUT, proxy=self.proxy)
50
else:
51
- return httpx.AsyncClient(base_url=self.hub_url, timeout=REQUEST_TIMEOUT)
+ return httpx.AsyncClient(base_url=self.hub_url, timeout=REQUEST_TIMEOUT, proxies=self.proxy)
52
53
def start_sync_loop(self) -> None:
54
self._stop_sync_loop = False
0 commit comments