Sfoglia il codice sorgente

bugfix, last commit introduced a syntax error. properly awaiting handle_tasks.cancel_remaining now

digital 8 anni fa
parent
commit
3592d7f248
1 ha cambiato i file con 6 aggiunte e 3 eliminazioni
  1. 6 3
      network/__init__.py

+ 6 - 3
network/__init__.py

@@ -226,15 +226,18 @@ class Server(object):
         it unregisters itself from atexit, so it doesn't get executed twice
         it unregisters itself from atexit, so it doesn't get executed twice
         when it was manually called before to program exits.
         when it was manually called before to program exits.
         """
         """
-        def error_handler(func,*args,log_text="error",**kwargs):
+        def error_handler(func,*args,log_text="error",async_=True,**kwargs):
             try:
             try:
-                func(*args,**kwargs)
+                if async:
+                    await func(*args,**kwargs)
+                else:
+                    func(*args,**kwargs)
             except Exception as exc:
             except Exception as exc:
                 lserver.debug("error occured during "+log_text,exc_info=exc)
                 lserver.debug("error occured during "+log_text,exc_info=exc)
         atexit.unregister(self.shutdown)
         atexit.unregister(self.shutdown)
         lserver.info("shutting down server")
         lserver.info("shutting down server")
         error_handler(
         error_handler(
-            await self.handle_tasks.cancel_remaining,log_text="handler cancel")
+            self.handle_tasks.cancel_remaining,log_text="handler cancel",async_=True)
         # check if there is actually a socket. if the shutdown method is
         # check if there is actually a socket. if the shutdown method is
         # executed before the start method, there is no socket.
         # executed before the start method, there is no socket.
         if self.socket:
         if self.socket: