From fd249e222326a99826f79f018cf565b74451a5f2 Mon Sep 17 00:00:00 2001 From: Santhosh Date: Thu, 9 Jun 2011 10:29:30 +0530 Subject: [PATCH] Santhosh/Deepak | Fixed the import issue and config.load_paste_app issue --- quantum/common/config.py | 1 - quantum/service.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/quantum/common/config.py b/quantum/common/config.py index f2daa417b..320c3b2cf 100644 --- a/quantum/common/config.py +++ b/quantum/common/config.py @@ -33,7 +33,6 @@ from paste import deploy from quantum.common import flags from quantum.common import exceptions as exception -from quantum.common import extensions DEFAULT_LOG_FORMAT = "%(asctime)s %(levelname)8s [%(name)s] %(message)s" DEFAULT_LOG_DATE_FORMAT = "%Y-%m-%d %H:%M:%S" diff --git a/quantum/service.py b/quantum/service.py index 1406462b1..0c27bcc5b 100644 --- a/quantum/service.py +++ b/quantum/service.py @@ -102,7 +102,9 @@ def serve_wsgi(cls, conf=None, options=None, args=None): def _run_wsgi(app_name, paste_conf, paste_config_file): LOG.info(_('Using paste.deploy config at: %s'), paste_config_file) - app = config.load_paste_app(paste_config_file, app_name) + conf, app = config.load_paste_app(app_name, + {'config_file': paste_config_file}, + None) if not app: LOG.error(_('No known API applications configured in %s.'), paste_config_file) -- 2.45.2