Shut down server on SIGINT on Windows
This commit is contained in:
parent
d6435c36c9
commit
f8de674bd2
@ -256,9 +256,11 @@ def serve(configuration, logger):
|
||||
try:
|
||||
rlist, _, xlist = select.select(
|
||||
sockets, [], sockets, select_timeout)
|
||||
except (KeyboardInterrupt, select.error):
|
||||
# SIGINT is handled by signal handler above
|
||||
rlist, xlist = [], []
|
||||
except select.error:
|
||||
continue
|
||||
except KeyboardInterrupt:
|
||||
shutdown()
|
||||
continue
|
||||
if xlist:
|
||||
raise RuntimeError("unhandled socket error")
|
||||
if rlist:
|
||||
|
Loading…
Reference in New Issue
Block a user