summaryrefslogtreecommitdiffstats
path: root/openstack/common/rpc
diff options
context:
space:
mode:
authorHengqing Hu <hudayou@hotmail.com>2012-12-27 21:12:51 +0800
committerHengqing Hu <hudayou@hotmail.com>2012-12-27 21:16:49 +0800
commitb8a06a340012dbf50e10ef3c2b866bb0d095a824 (patch)
treec1a4097adcbc5b70d76edbfc094d37e5f5e141c9 /openstack/common/rpc
parent8888ad0126f25c91b90f7bc4c2440da0bf35ec1d (diff)
downloadoslo-b8a06a340012dbf50e10ef3c2b866bb0d095a824.tar.gz
oslo-b8a06a340012dbf50e10ef3c2b866bb0d095a824.tar.xz
oslo-b8a06a340012dbf50e10ef3c2b866bb0d095a824.zip
Fix debug message in multicall of rpc.amqp
Change-Id: Ib5ed65df937e9fe4e36cdf7d0ce92b627f22dbd3
Diffstat (limited to 'openstack/common/rpc')
-rw-r--r--openstack/common/rpc/amqp.py2
1 files changed, 1 insertions, 1 deletions
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))