Upgrade SQLAlchemy to v2.0.18 and fix async_timeout warning

This commit is contained in:
grossmj
2023-08-11 22:52:29 +10:00
parent b0657b39ef
commit ca48efa5be
2 changed files with 2 additions and 2 deletions

View File

@ -503,7 +503,7 @@ class Compute:
return self._getUrl(path)
async def _run_http_query(self, method, path, data=None, timeout=20, raw=False):
with async_timeout.timeout(timeout):
async with async_timeout.timeout(delay=timeout):
url = self._getUrl(path)
headers = {"content-type": "application/json"}
chunked = None