mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-19 07:53:47 +02:00
Fix issue with coroutine not awaited. Fixes #1499
This commit is contained in:
parent
474025175e
commit
4b52e9313e
@ -92,7 +92,7 @@ class Docker(BaseManager):
|
|||||||
await super().unload()
|
await super().unload()
|
||||||
if self._connected:
|
if self._connected:
|
||||||
if self._connector and not self._connector.closed:
|
if self._connector and not self._connector.closed:
|
||||||
self._connector.close()
|
await self._connector.close()
|
||||||
if self._session and not self._session.closed:
|
if self._session and not self._session.closed:
|
||||||
await self._session.close()
|
await self._session.close()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user