summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-01-06 19:27:59 +0000
committerGerrit Code Review <review@openstack.org>2013-01-06 19:27:59 +0000
commit7601ba83872e49e8262351189a75628b6296ae6c (patch)
treed3e96a27da304a8d4397efc7603df371a2366d46 /openstack
parent5d4a9c99fe20085aa1c9afc130776ebe21574a7f (diff)
parentb8a06a340012dbf50e10ef3c2b866bb0d095a824 (diff)
downloadoslo-7601ba83872e49e8262351189a75628b6296ae6c.tar.gz
oslo-7601ba83872e49e8262351189a75628b6296ae6c.tar.xz
oslo-7601ba83872e49e8262351189a75628b6296ae6c.zip
Merge "Fix debug message in multicall of rpc.amqp"
Diffstat (limited to 'openstack')
-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 ad448f2..393e13e 100644
--- a/openstack/common/rpc/amqp.py
+++ b/openstack/common/rpc/amqp.py
@@ -359,7 +359,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))