From 18f99303a793e30633df95f933a740f459dfb15a Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Mon, 14 Jan 2013 16:31:52 +0000 Subject: Add missing parameter to impl_fake notify function. The envelope was missing. Change-Id: I3ab8f573e6c5020bd564ad78de29e6c285695f2c --- openstack/common/rpc/impl_fake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack') 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) -- cgit