catch exit exception

This commit is contained in:
BreakWa11 2016-04-22 23:48:41 +08:00
parent d6640b2e81
commit 9f4f42eefd

View file

@ -86,6 +86,10 @@ class ServerPool(object):
import traceback
traceback.print_exc()
os.exit(0)
except Exception as e:
logging.error(e)
import traceback
traceback.print_exc()
def server_is_run(self, port):
port = int(port)