Merge "Fix exception by passing timeout as None"

This commit is contained in:
Jenkins
2012-02-10 23:04:15 +00:00
committed by Gerrit Code Review

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