From 7e16d436806abccc8f3e9367efedaa5ee6b6978c Mon Sep 17 00:00:00 2001 From: Flavio Fernandes Date: Wed, 7 May 2014 14:00:51 -0400 Subject: [PATCH] Bug-590: Packet loss on first time ping test Bump severity of log in exception code path. Undo copy and paste mistake, which caused unwanted line left behind. Change-Id: If73e516635172e31e794cd1524611c1cdb15f89f Signed-off-by: Flavio Fernandes --- .../simpleforwarding/internal/SimpleForwardingImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/opendaylight/samples/simpleforwarding/src/main/java/org/opendaylight/controller/samples/simpleforwarding/internal/SimpleForwardingImpl.java b/opendaylight/samples/simpleforwarding/src/main/java/org/opendaylight/controller/samples/simpleforwarding/internal/SimpleForwardingImpl.java index d6957385bd..a48d331773 100644 --- a/opendaylight/samples/simpleforwarding/src/main/java/org/opendaylight/controller/samples/simpleforwarding/internal/SimpleForwardingImpl.java +++ b/opendaylight/samples/simpleforwarding/src/main/java/org/opendaylight/controller/samples/simpleforwarding/internal/SimpleForwardingImpl.java @@ -152,7 +152,7 @@ public class SimpleForwardingImpl implements IfNewHostNotify, } } } catch (IllegalStateException e) { - log.debug("IllegalStateException Received by PendingPacketsAgerTimerHandler from: {}", + log.warn("IllegalStateException Received by PendingPacketsAgerTimerHandler from: {}", e.getMessage()); } } @@ -186,7 +186,6 @@ public class SimpleForwardingImpl implements IfNewHostNotify, * hope that the destination is known by hostTracker. */ private void sendPendingPacket(InetAddress dIP) { - pendingPacketDestinations.get(dIP); PendingPacketData pendingPacketData = pendingPacketDestinations.get(dIP); if (pendingPacketData != null) { handlePuntedIPPacket(pendingPacketData.pkt, pendingPacketData.incomingNodeConnector, false); -- 2.36.6