1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-18 06:18:08 +00:00

Fix issue with coroutine not awaited. Fixes #1499

This commit is contained in:
grossmj 2019-01-17 17:43:09 +07:00
parent 474025175e
commit 4b52e9313e

View File

@ -92,7 +92,7 @@ class Docker(BaseManager):
await super().unload()
if self._connected:
if self._connector and not self._connector.closed:
self._connector.close()
await self._connector.close()
if self._session and not self._session.closed:
await self._session.close()