Fix issue with coroutine not awaited. Fixes #1499

pull/1508/head
grossmj 5 years ago
parent 474025175e
commit 4b52e9313e

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

Loading…
Cancel
Save