Fix signal handler.

Change-Id: Idf4c576d6f6576519f1deff85ccc3f3901491d0e
Reviewed-on: https://review.openstack.org/33463
Reviewed-by: Monty Taylor <mordred@inaugust.com>
Approved: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
This commit is contained in:
James E. Blair 2013-06-18 08:36:07 -07:00 committed by Jenkins
parent 80ac440a06
commit f9eeb9451b
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class Server(object):
def reconfigure_handler(self, signum, frame):
signal.signal(signal.SIGHUP, signal.SIG_IGN)
self.read_config()
self.setup_logging()
self.setup_logging('zuul', 'log_config')
self.sched.reconfigure(self.config)
signal.signal(signal.SIGHUP, self.reconfigure_handler)