mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 13:47:37 +03:00
Revert "Shut down server on SIGINT on Windows"
This reverts commit f8de674bd2
.
This commit is contained in:
parent
f8de674bd2
commit
d34ee1217d
1 changed files with 3 additions and 5 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue