From d0d62927e661c84003845a61d2b991a54e723ed4 Mon Sep 17 00:00:00 2001 From: Darragh O'Reilly Date: Sat, 20 Jun 2015 11:55:27 +0000 Subject: [PATCH] Fix RPC version to be a string The RPC version was being passed as a float which caused an exception. Change-Id: I2a2888fcafcc426009fc841b81049a22e072ce75 Closes-Bug: #1467087 --- neutron/api/rpc/handlers/securitygroups_rpc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/api/rpc/handlers/securitygroups_rpc.py b/neutron/api/rpc/handlers/securitygroups_rpc.py index fa7488fac..c8115d0d0 100644 --- a/neutron/api/rpc/handlers/securitygroups_rpc.py +++ b/neutron/api/rpc/handlers/securitygroups_rpc.py @@ -156,7 +156,7 @@ class SecurityGroupAgentRpcApiMixin(object): def security_groups_provider_updated(self, context, devices_to_update=None): """Notify provider updated security groups.""" - cctxt = self.client.prepare(version=1.3, + cctxt = self.client.prepare(version='1.3', topic=self._get_security_group_topic(), fanout=True) cctxt.cast(context, 'security_groups_provider_updated', -- 2.45.2