From 0b2d1ac2356b250054f993a7eab30107a08bb3ea Mon Sep 17 00:00:00 2001 From: Akihiro MOTOKI Date: Sun, 16 Jun 2013 16:45:56 +0900 Subject: [PATCH] Correct log message in l3_rpc_agent_api Fixes bug #1191623 Change-Id: Ib692a62d6f557ab9a50da1d888e291e3e24871fb --- quantum/api/rpc/agentnotifiers/l3_rpc_agent_api.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/quantum/api/rpc/agentnotifiers/l3_rpc_agent_api.py b/quantum/api/rpc/agentnotifiers/l3_rpc_agent_api.py index 4dc56f940..53fb093b0 100644 --- a/quantum/api/rpc/agentnotifiers/l3_rpc_agent_api.py +++ b/quantum/api/rpc/agentnotifiers/l3_rpc_agent_api.py @@ -44,12 +44,7 @@ class L3AgentNotifyAPI(proxy.RpcProxy): def _agent_notification(self, context, method, routers, operation, data): - """Notify changed routers to hosting l3 agents. - - Adjust routers according to l3 agents' role and - related dhcp agents. - Notify dhcp agent to get right subnet's gateway ips. - """ + """Notify changed routers to hosting l3 agents.""" adminContext = context.is_admin and context or context.elevated() plugin = manager.QuantumManager.get_plugin() for router in routers: @@ -88,7 +83,7 @@ class L3AgentNotifyAPI(proxy.RpcProxy): """Fanout the deleted router to all L3 agents.""" LOG.debug(_('Fanout notify agent at %(topic)s the message ' '%(method)s on router %(router_id)s'), - {'topic': topics.DHCP_AGENT, + {'topic': topics.L3_AGENT, 'method': method, 'router_id': router_id}) self.fanout_cast( -- 2.45.2