summaryrefslogtreecommitdiffstats
path: root/nova/rpc.py
diff options
context:
space:
mode:
authorSalvatore Orlando <salvatore.orlando@eu.citrix.com>2011-03-18 08:01:07 +0000
committerSalvatore Orlando <salvatore.orlando@eu.citrix.com>2011-03-18 08:01:07 +0000
commitdde92454697b23a02abd573feeea13fec0bd8a9a (patch)
tree7d082acbb041b340e586cf5cd1bb65de6613cbd8 /nova/rpc.py
parentd1958f61e5573b6a4101564e6e4b1969000eccca (diff)
parentabe147f756f13d4f968aa075d709e5c6643d310a (diff)
downloadnova-dde92454697b23a02abd573feeea13fec0bd8a9a.tar.gz
nova-dde92454697b23a02abd573feeea13fec0bd8a9a.tar.xz
nova-dde92454697b23a02abd573feeea13fec0bd8a9a.zip
merge trunk
Diffstat (limited to 'nova/rpc.py')
-rw-r--r--nova/rpc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index fbb90299b..58715963a 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -311,7 +311,7 @@ def _pack_context(msg, context):
def call(context, topic, msg):
"""Sends a message on a topic and wait for a response"""
- LOG.debug(_("Making asynchronous call..."))
+ LOG.debug(_("Making asynchronous call on %s ..."), topic)
msg_id = uuid.uuid4().hex
msg.update({'_msg_id': msg_id})
LOG.debug(_("MSG_ID is %s") % (msg_id))
@@ -352,7 +352,7 @@ def call(context, topic, msg):
def cast(context, topic, msg):
"""Sends a message on a topic without waiting for a response"""
- LOG.debug(_("Making asynchronous cast..."))
+ LOG.debug(_("Making asynchronous cast on %s..."), topic)
_pack_context(msg, context)
conn = Connection.instance()
publisher = TopicPublisher(connection=conn, topic=topic)