|
|
@ -780,7 +780,6 @@ cdef CallbackFailureHandler SERVER_SHUTDOWN_FAILURE_HANDLER = CallbackFailureHan |
|
|
|
None, |
|
|
|
None, |
|
|
|
InternalError) |
|
|
|
InternalError) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cdef class AioServer: |
|
|
|
cdef class AioServer: |
|
|
|
|
|
|
|
|
|
|
|
def __init__(self, loop, thread_pool, generic_handlers, interceptors, |
|
|
|
def __init__(self, loop, thread_pool, generic_handlers, interceptors, |
|
|
@ -884,6 +883,8 @@ cdef class AioServer: |
|
|
|
|
|
|
|
|
|
|
|
def _serving_task_crash_handler(self, object task): |
|
|
|
def _serving_task_crash_handler(self, object task): |
|
|
|
"""Shutdown the server immediately if unexpectedly exited.""" |
|
|
|
"""Shutdown the server immediately if unexpectedly exited.""" |
|
|
|
|
|
|
|
if task.cancelled(): |
|
|
|
|
|
|
|
return |
|
|
|
if task.exception() is None: |
|
|
|
if task.exception() is None: |
|
|
|
return |
|
|
|
return |
|
|
|
if self._status != AIO_SERVER_STATUS_STOPPING: |
|
|
|
if self._status != AIO_SERVER_STATUS_STOPPING: |
|
|
|