We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92fb899 commit 775591eCopy full SHA for 775591e
python/lsst/resources/http.py
@@ -1343,7 +1343,9 @@ async def get_client_session(**kwargs: Any) -> ClientSession:
1343
limit_per_host=1,
1344
# Time to keep open connections alive (unit is likely
1345
# seconds, even if not documented). The default is 15.0
1346
- keepalive_timeout=15.0,
+ # keepalive_timeout=15.0,
1347
+ # Close network connection after usage
1348
+ force_close=True,
1349
)
1350
1351
connect_timeout, read_timeout = self._config.timeout
0 commit comments