浏览代码

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: