Revert "Shut down server on SIGINT on Windows"

This reverts commit f8de674bd2.
This commit is contained in:
Unrud 2017-07-30 11:21:04 +02:00
parent f8de674bd2
commit d34ee1217d

View File

@ -256,11 +256,9 @@ def serve(configuration, logger):
try:
rlist, _, xlist = select.select(
sockets, [], sockets, select_timeout)
except select.error:
continue
except KeyboardInterrupt:
shutdown()
continue
except (KeyboardInterrupt, select.error):
# SIGINT is handled by signal handler above
rlist, xlist = [], []
if xlist:
raise RuntimeError("unhandled socket error")
if rlist: