diff options
author | andy <github@anarkystic.com> | 2010-09-08 20:06:27 +0200 |
---|---|---|
committer | andy <github@anarkystic.com> | 2010-09-08 20:06:27 +0200 |
commit | bd550806950bcfdcd32172a896f04bc3b1a76392 (patch) | |
tree | a9fcabb9e1847c97174a7ddd68d00cd8eea616a6 | |
parent | 9df460a5cb2de96133028949ad12ac7c16dbd7fc (diff) | |
download | nova-bd550806950bcfdcd32172a896f04bc3b1a76392.tar.gz nova-bd550806950bcfdcd32172a896f04bc3b1a76392.tar.xz nova-bd550806950bcfdcd32172a896f04bc3b1a76392.zip |
Missed an instance of attach_to_tornado.
Kind of crappy because testing didn't catch it, the test code certainly
appears to be testing those features, however.
-rw-r--r-- | nova/rpc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/rpc.py b/nova/rpc.py index d83dd7a7c..7a89ca8d0 100644 --- a/nova/rpc.py +++ b/nova/rpc.py @@ -264,7 +264,7 @@ def call(topic, msg): return d.callback(data['result']) consumer.register_callback(deferred_receive) - injected = consumer.attach_to_tornado() + injected = consumer.attach_to_twisted() # clean up after the injected listened and return x d.addCallback(lambda x: injected.stop() and x or x) |