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.
HTTPConnection
1 parent 5765e18 commit 4b7b8abCopy full SHA for 4b7b8ab
vllm/connections.py
@@ -29,7 +29,7 @@ def get_sync_client(self) -> requests.Session:
29
# required, so that the client is only accessible inside async event loop
30
async def get_async_client(self) -> aiohttp.ClientSession:
31
if self._async_client is None or not self.reuse_client:
32
- self._async_client = aiohttp.ClientSession()
+ self._async_client = aiohttp.ClientSession(trust_env=True)
33
34
return self._async_client
35
0 commit comments