summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Lamar <brian.lamar@rackspace.com>2011-06-21 00:35:45 -0400
committerBrian Lamar <brian.lamar@rackspace.com>2011-06-21 00:35:45 -0400
commit679b00759ab2f183c3372465baa7daab1abeb25e (patch)
treedd6649e0ec2e8db02d29fb94872d6d0a0486d780
parente821b96feb49492c7b20afaa7ae0be5143dd4879 (diff)
Removed debugging and switched eventlet to monkey patch everything.
-rw-r--r--nova/service.py1
-rw-r--r--nova/wsgi.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/nova/service.py b/nova/service.py
index 08071e80c..4cf372377 100644
--- a/nova/service.py
+++ b/nova/service.py
@@ -116,7 +116,6 @@ class Launcher(object):
"""
for service in self._services:
service.join()
- logging.info("Process exited with %d" % service.exitcode)
class Service(object):
diff --git a/nova/wsgi.py b/nova/wsgi.py
index 097fa4734..3c4f8a5da 100644
--- a/nova/wsgi.py
+++ b/nova/wsgi.py
@@ -39,7 +39,7 @@ from nova import log
from nova import utils
-eventlet.patcher.monkey_patch(all=False, socket=True, time=True)
+eventlet.patcher.monkey_patch()
FLAGS = flags.FLAGS