mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Upgrade SQLAlchemy to v2.0.18 and fix async_timeout warning
This commit is contained in:
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…
Reference in New Issue
Block a user