Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vllm/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def get_sync_client(self) -> requests.Session:
# required, so that the client is only accessible inside async event loop
async def get_async_client(self) -> aiohttp.ClientSession:
if self._async_client is None or not self.reuse_client:
self._async_client = aiohttp.ClientSession()
self._async_client = aiohttp.ClientSession(trust_env=True)

return self._async_client

Expand Down
Loading