|
@@ -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:
|