diff --git a/nova/rpc/amqp.py b/nova/rpc/amqp.py index 367eaf1e..e620ea36 100644 --- a/nova/rpc/amqp.py +++ b/nova/rpc/amqp.py @@ -244,7 +244,7 @@ class ProxyCallback(object): """Thread that magically looks for a method on the proxy object and calls it. """ - + ctxt.update_store() try: node_func = getattr(self.proxy, str(method)) node_args = dict((str(k), v) for k, v in args.iteritems()) diff --git a/nova/rpc/impl_carrot.py b/nova/rpc/impl_carrot.py index cc124c25..22586b1a 100644 --- a/nova/rpc/impl_carrot.py +++ b/nova/rpc/impl_carrot.py @@ -283,7 +283,7 @@ class AdapterConsumer(Consumer): """Thread that magically looks for a method on the proxy object and calls it. """ - + ctxt.update_store() node_func = getattr(self.proxy, str(method)) node_args = dict((str(k), v) for k, v in args.iteritems()) # NOTE(vish): magic is fun!