Merge "One 'ctrl-c' kills keystone."

This commit is contained in:
Jenkins 2012-05-29 19:24:12 +00:00 committed by Gerrit Code Review
commit 654dd41632

View File

@ -4,6 +4,7 @@
import greenlet
import logging
import os
import signal
import sys
# If ../keystone/__init__.py exists, add ../ to Python search path, so that
@ -31,7 +32,15 @@ def create_server(conf, name, host, port):
return wsgi.Server(app, host=host, port=port)
def sigint_handler(signal, frame):
"""Exits at SIGINT signal."""
logging.debug('SIGINT received, stopping servers.')
sys.exit(0)
def serve(*servers):
signal.signal(signal.SIGINT, sigint_handler)
for server in servers:
logging.debug("starting server %s on port %s",
server.application,