From b8a06a340012dbf50e10ef3c2b866bb0d095a824 Mon Sep 17 00:00:00 2001 From: Hengqing Hu Date: Thu, 27 Dec 2012 21:12:51 +0800 Subject: Fix debug message in multicall of rpc.amqp Change-Id: Ib5ed65df937e9fe4e36cdf7d0ce92b627f22dbd3 --- openstack/common/rpc/amqp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openstack/common/rpc/amqp.py b/openstack/common/rpc/amqp.py index 00b2f24..95040ba 100644 --- a/openstack/common/rpc/amqp.py +++ b/openstack/common/rpc/amqp.py @@ -355,7 +355,7 @@ def multicall(conf, context, topic, msg, timeout, connection_pool): # that will continue to use the connection. When it's done, # connection.close() will get called which will put it back into # the pool - LOG.debug(_('Making asynchronous call on %s ...'), topic) + LOG.debug(_('Making synchronous call on %s ...'), topic) msg_id = uuid.uuid4().hex msg.update({'_msg_id': msg_id}) LOG.debug(_('MSG_ID is %s') % (msg_id)) -- cgit