summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-06-23 23:30:14 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2010-06-23 23:30:14 -0700
commit8384fe99a75552cb8aa7ae3c4d4b7f7318770d41 (patch)
treedadfcac8db81d513f41f18cb7a1f9ef7341d87b3
parent4ba6802ae5d6fb4e0d8ed7bbbaf2cca94a6d1118 (diff)
fit comment within 80 lines
-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..032edf79a 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
+ # 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