Commit c5e9f28d authored by Barry Warsaw's avatar Barry Warsaw

loop_forever(): Use ThreadedAsync.loop() explicitly, instead of

through the sneakily rebound asyncore.loop().
parent 87699fc9
...@@ -359,8 +359,8 @@ class ZEOServer: ...@@ -359,8 +359,8 @@ class ZEOServer:
self.server = StorageServer(self.options.address, self.storages) self.server = StorageServer(self.options.address, self.storages)
def loop_forever(self): def loop_forever(self):
import asyncore import ThreadedAsync
asyncore.loop() ThreadedAsync.loop()
def handle_sigterm(self): def handle_sigterm(self):
info("terminated by SIGTERM") info("terminated by SIGTERM")
......
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