From d0366b6554e250126bd1776f9f6dd80dbed6f1e4 Mon Sep 17 00:00:00 2001 From: Johannes Erdfelt Date: Fri, 10 Feb 2012 18:31:20 +0000 Subject: Fix exception by passing timeout as None The call method takes a new timeout argument, but not all uses of it were updated to pass the new argument. Change-Id: Ie4377419aafa5606ade803f8e4cd715cb53b1547 --- nova/rpc/impl_fake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/rpc/impl_fake.py b/nova/rpc/impl_fake.py index 6e4d2f6ec..44567d6f9 100644 --- a/nova/rpc/impl_fake.py +++ b/nova/rpc/impl_fake.py @@ -174,6 +174,6 @@ def fanout_cast(context, topic, msg): for consumer in CONSUMERS.get(topic, []): try: - consumer.call(context, method, args) + consumer.call(context, method, args, None) except rpc_common.RemoteError: pass -- cgit