diff options
| author | Eric Windisch <eric@cloudscaling.com> | 2012-07-03 13:16:36 -0400 |
|---|---|---|
| committer | Eric Windisch <eric@cloudscaling.com> | 2012-07-03 13:34:04 -0400 |
| commit | 9e282ef2d6198ae5f7b62ec6c6c2975e5b252175 (patch) | |
| tree | a7616a131f1f73128113a3997e40e91f46d49703 | |
| parent | 545d5ddd6b2f8bdfe394d80c7af33e07472f9b95 (diff) | |
Fix nova-rpc-zmq-receiver
Logging broke with change to stdlib logging,
changed to openstack.common log.
Use of 'python -d' seems not to work with 'env', and unnecessary.
Change-Id: I428c56c612c7d9d043dab2d36b80beb6ca184d27
| -rwxr-xr-x | bin/nova-rpc-zmq-receiver | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/nova-rpc-zmq-receiver b/bin/nova-rpc-zmq-receiver index 5e5e6d8f7..926eee377 100755 --- a/bin/nova-rpc-zmq-receiver +++ b/bin/nova-rpc-zmq-receiver @@ -1,4 +1,4 @@ -#!/usr/bin/env python -d +#!/usr/bin/env python # vim: tabstop=4 shiftwidth=4 softtabstop=4 # Copyright 2011 OpenStack LLC @@ -19,7 +19,6 @@ import eventlet eventlet.monkey_patch() import contextlib -import logging import os import sys @@ -35,6 +34,7 @@ if os.path.exists(os.path.join(POSSIBLE_TOPDIR, 'nova', '__init__.py')): from nova import exception from nova.openstack.common import cfg +from nova.openstack.common import log as logging from nova.openstack.common import rpc from nova.openstack.common.rpc import impl_zmq from nova import utils |
