Upgrade SQLAlchemy to v2.0.18 and fix async_timeout warning

pull/2275/head
grossmj 10 months ago
parent b0657b39ef
commit ca48efa5be

@ -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

@ -10,7 +10,7 @@ sentry-sdk==1.29.2,<1.30
psutil==5.9.5
distro>=1.8.0
py-cpuinfo==9.0.0
sqlalchemy==2.0.17
sqlalchemy==2.0.18
aiosqlite==0.19.0
alembic==1.11.2
passlib[bcrypt]==1.7.4

Loading…
Cancel
Save