summaryrefslogtreecommitdiffstats
path: root/nova/rpc.py
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-06-23 23:50:33 -0700
committerVishvananda Ishaya <vishvananda@gmail.com>2010-06-23 23:50:33 -0700
commitbadef85b2ceb7121068da8f86507bdee863df44c (patch)
tree3d470b3a762826097bfb74eda8184eb50d4d9d4c /nova/rpc.py
parent8384fe99a75552cb8aa7ae3c4d4b7f7318770d41 (diff)
downloadnova-badef85b2ceb7121068da8f86507bdee863df44c.tar.gz
nova-badef85b2ceb7121068da8f86507bdee863df44c.tar.xz
nova-badef85b2ceb7121068da8f86507bdee863df44c.zip
more comment reformatting
Diffstat (limited to 'nova/rpc.py')
-rw-r--r--nova/rpc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/nova/rpc.py b/nova/rpc.py
index 032edf79a..43713bd5f 100644
--- a/nova/rpc.py
+++ b/nova/rpc.py
@@ -115,10 +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