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
This commit is contained in:
Johannes Erdfelt
2012-02-10 18:31:20 +00:00
parent 0ca8e54e5a
commit 82658363ba

View File

@@ -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