Fix config setup order

Change-Id: I8cb584e6918797d9c7b197d629db7dad08073059
This commit is contained in:
Joshua Hesketh 2013-11-20 12:22:19 +11:00
parent d61c805dae
commit 8326907163

View File

@ -40,11 +40,11 @@ class Server(object):
log = logging.getLogger("worker_server.Server")
def __init__(self, config):
self.config = config
# Python logging output file.
self.debug_log = self.config['debug_log']
# Config init
self.config = config
self.zuul_manager = None
self.zuul_client = None
self.plugins = []