]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Santhosh/Deepak | Fixed the import issue and config.load_paste_app issue
authorSanthosh <santhom@thoughtworks.com>
Thu, 9 Jun 2011 04:59:30 +0000 (10:29 +0530)
committerSanthosh <santhom@thoughtworks.com>
Thu, 9 Jun 2011 04:59:30 +0000 (10:29 +0530)
quantum/common/config.py
quantum/service.py

index f2daa417bb64d52f304e1131f2ff5f2d2d6ed370..320c3b2cf0a9b076d62dc00faf117e0a8aa823d7 100644 (file)
@@ -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"
index 1406462b18a02f305994ab17f665b7ab750a6282..0c27bcc5b733f062e1874f09b956ae34b2441c19 100644 (file)
@@ -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)