Преглед на файлове

bugfix, handle_tasks.cancel_remaining was never awaited

digital преди 8 години
родител
ревизия
05330b26ab
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      network/__init__.py

+ 1 - 1
network/__init__.py

@@ -234,7 +234,7 @@ class Server(object):
         atexit.unregister(self.shutdown)
         lserver.info("shutting down server")
         error_handler(
-            self.handle_tasks.cancel_remaining,log_text="handler cancel")
+            await self.handle_tasks.cancel_remaining,log_text="handler cancel")
         # check if there is actually a socket. if the shutdown method is
         # executed before the start method, there is no socket.
         if self.socket: