From 9e282ef2d6198ae5f7b62ec6c6c2975e5b252175 Mon Sep 17 00:00:00 2001 From: Eric Windisch Date: Tue, 3 Jul 2012 13:16:36 -0400 Subject: 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 --- bin/nova-rpc-zmq-receiver | 4 ++-- 1 file 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 -- cgit