summaryrefslogtreecommitdiffstats
path: root/nova/wsgi.py
diff options
context:
space:
mode:
authorArmando Migliaccio <armando.migliaccio@citrix.com>2011-02-25 15:10:25 +0000
committerArmando Migliaccio <armando.migliaccio@citrix.com>2011-02-25 15:10:25 +0000
commitbe3909403fcd7c080cc9b36e79321930b283b8ea (patch)
tree338ff9f558524636918fa584e2f757df62000367 /nova/wsgi.py
parent43df95d1d8a4e8de094ca0a430eb7ac913803f8f (diff)
parent645bc7a7dea6ba01d76589632200636e243641ec (diff)
Rebased at lp:nova 740
By rebasing to the latest from lp:nova, diff is going to be a more accurate picture of what we are going deal with, when the vmware branch propose for merge into the official branch
Diffstat (limited to 'nova/wsgi.py')
-rw-r--r--nova/wsgi.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/nova/wsgi.py b/nova/wsgi.py
index e01cc1e1e..1eb66d067 100644
--- a/nova/wsgi.py
+++ b/nova/wsgi.py
@@ -59,7 +59,6 @@ class Server(object):
"""Server class to manage multiple WSGI sockets and applications."""
def __init__(self, threads=1000):
- logging.basicConfig()
self.pool = eventlet.GreenPool(threads)
def start(self, application, port, host='0.0.0.0', backlog=128):
@@ -515,10 +514,3 @@ def load_paste_app(filename, appname):
except LookupError:
pass
return app
-
-
-def paste_config_to_flags(config, mixins):
- for k, v in mixins.iteritems():
- value = config.get(k, v)
- converted_value = FLAGS[k].parser.Parse(value)
- setattr(FLAGS, k, converted_value)