From ea4abf0199bebc5f67ae5437076bdc638615e56b Mon Sep 17 00:00:00 2001 From: rajeev Date: Wed, 4 Feb 2015 17:48:16 -0500 Subject: [PATCH] Log entry when no Floating IP interface present Having a log entry here in process_router_floating_ip_addresses would make it easier to understand why the status of floating ips wasn't updated. Change-Id: If7ff3d8951010ed2a4e802acdb948cfdfcb5dda6 Related-bug: #1415522 --- neutron/agent/l3/agent.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neutron/agent/l3/agent.py b/neutron/agent/l3/agent.py index 844911d22..296b128e1 100644 --- a/neutron/agent/l3/agent.py +++ b/neutron/agent/l3/agent.py @@ -752,6 +752,8 @@ class L3NATAgent(firewall_l3_agent.FWaaSL3AgentRpcCallback, fip_statuses = {} if interface_name is None: + LOG.debug('No Interface for floating IPs router: %s', + ri.router['id']) return fip_statuses device = ip_lib.IPDevice(interface_name, self.root_helper, -- 2.45.2