summaryrefslogtreecommitdiffstats
path: root/openstack
diff options
context:
space:
mode:
authorGary Kotton <gkotton@redhat.com>2013-01-14 16:31:52 +0000
committerGary Kotton <gkotton@redhat.com>2013-01-14 16:33:34 +0000
commit18f99303a793e30633df95f933a740f459dfb15a (patch)
tree0c9e1f9adc5dbd2420d150d81482ab41d77f9aaf /openstack
parentd74668fbedc29aa4b7868fd3fb8a28d326f43d52 (diff)
downloadoslo-18f99303a793e30633df95f933a740f459dfb15a.tar.gz
oslo-18f99303a793e30633df95f933a740f459dfb15a.tar.xz
oslo-18f99303a793e30633df95f933a740f459dfb15a.zip
Add missing parameter to impl_fake notify function.
The envelope was missing. Change-Id: I3ab8f573e6c5020bd564ad78de29e6c285695f2c
Diffstat (limited to 'openstack')
-rw-r--r--openstack/common/rpc/impl_fake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/impl_fake.py b/openstack/common/rpc/impl_fake.py
index d526a48..9b168ed 100644
--- a/openstack/common/rpc/impl_fake.py
+++ b/openstack/common/rpc/impl_fake.py
@@ -167,7 +167,7 @@ def cast(conf, context, topic, msg):
pass
-def notify(conf, context, topic, msg):
+def notify(conf, context, topic, msg, envelope):
check_serialize(msg)