summaryrefslogtreecommitdiff
path: root/bin/nova-compute
diff options
context:
space:
mode:
Diffstat (limited to 'bin/nova-compute')
-rwxr-xr-xbin/nova-compute5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/nova-compute b/bin/nova-compute
index cd7c78def0..5239fae72e 100755
--- a/bin/nova-compute
+++ b/bin/nova-compute
@@ -22,7 +22,6 @@
import eventlet
eventlet.monkey_patch()
-import gettext
import os
import sys
@@ -34,7 +33,6 @@ POSSIBLE_TOPDIR = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]),
if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'nova', '__init__.py')):
sys.path.insert(0, POSSIBLE_TOPDIR)
-gettext.install('nova', unicode=1)
from nova import flags
from nova import log as logging
@@ -45,5 +43,6 @@ if __name__ == '__main__':
utils.default_flagfile()
flags.FLAGS(sys.argv)
logging.setup()
- service.serve()
+ server = service.Service.create(binary='nova-compute')
+ service.serve(server)
service.wait()