summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-07-01 17:51:32 -0500
committerVishvananda Ishaya <vishvananda@gmail.com>2010-07-01 17:51:32 -0500
commit5a93cc008aeba52530930c99be3f1eb5ac3c912e (patch)
treef8031b22366dcf82977a534771f5a1a6c69c50ca
parent48572fe220372322d52f6c28fc1003015b60eb50 (diff)
parentbadef85b2ceb7121068da8f86507bdee863df44c (diff)
Merge branch 'comment_fix'
-rw-r--r--nova/rpc.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 54843973a..43713bd5f 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -115,9 +115,10 @@ class AdapterConsumer(TopicConsumer):
args = message_data.get('args', {})
message.ack()
if not method:
- # vish: we may not want to ack here, but that means that bad messages
- # stay in the queue indefinitely, so for now we just log the
- # message and send an error string back to the caller
+ # NOTE(vish): we may not want to ack here, but that means that bad
+ # messages stay in the queue indefinitely, so for now
+ # we just log the message and send an error string
+ # back to the caller
_log.warn('no method for message: %s' % (message_data))
msg_reply(msg_id, 'No method for message: %s' % message_data)
return