diff options
| author | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-02-10 18:31:20 +0000 |
|---|---|---|
| committer | Johannes Erdfelt <johannes.erdfelt@rackspace.com> | 2012-02-10 18:31:20 +0000 |
| commit | d0366b6554e250126bd1776f9f6dd80dbed6f1e4 (patch) | |
| tree | a9bfdfee7ad59f20dce7f8e4423aa83ac1a1f455 | |
| parent | 6fb0adc066f0f8a64a5ec1fdcbe374b26935485a (diff) | |
| download | nova-d0366b6554e250126bd1776f9f6dd80dbed6f1e4.tar.gz nova-d0366b6554e250126bd1776f9f6dd80dbed6f1e4.tar.xz nova-d0366b6554e250126bd1776f9f6dd80dbed6f1e4.zip | |
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
| -rw-r--r-- | nova/rpc/impl_fake.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
