Commit 8e527e84 authored by Fred Drake's avatar Fred Drake

- sys.ZServerExitCode becomes ZServer.exit_code

parent f98a9ec6
......@@ -28,7 +28,8 @@ def shutdown(exit_code,fast = 0):
global _shutdown_timeout
if _shutdown_phase == 0:
# Thread safety? proably no need to care
sys.ZServerExitCode = exit_code
import ZServer
ZServer.exit_code = exit_code
_shutdown_phase = 1
if fast:
# Someone wants us to shutdown fast. This is hooked into SIGTERM - so possibly
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment