summaryrefslogtreecommitdiffstats
path: root/v3po/v3po2vpp/src/main/java
diff options
context:
space:
mode:
authorMaros Marsalek <mmarsale@cisco.com>2016-05-11 09:20:08 +0200
committerMaros Marsalek <mmarsale@cisco.com>2016-05-11 09:22:27 +0200
commitfda484129655d7d89e5b256d1b0afee1d564c169 (patch)
tree38924372063840cf80250834242ff5ca1848f160 /v3po/v3po2vpp/src/main/java
parente65d4d691bce34a60878562c4190b1008a121e55 (diff)
Add proper break statements to abstract reader
Change-Id: Iebb52d59e2e342151e616548722366985d7ee9a5 Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'v3po/v3po2vpp/src/main/java')
-rw-r--r--v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java b/v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java
index 09ea09e47..3db497a5c 100644
--- a/v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java
+++ b/v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java
@@ -162,8 +162,6 @@ public final class InterfaceUtils {
CompletionStage<SwInterfaceDetailsReplyDump> requestFuture = futureJvpp.swInterfaceDump(request);
SwInterfaceDetailsReplyDump ifaces = V3poUtils.getReply(requestFuture.toCompletableFuture());
if (null == ifaces || null == ifaces.swInterfaceDetails || ifaces.swInterfaceDetails.isEmpty()) {
- LOG.warn("VPP returned null instead of interface by key {}", key.getName());
- LOG.warn("Iterating through all the interfaces to find interface: {}", key.getName());
request.nameFilterValid = 0;
// Returned cached if available
@@ -171,6 +169,9 @@ public final class InterfaceUtils {
return allInterfaces.get(index);
}
+ LOG.warn("VPP returned null instead of interface by key {} and its not cached", key.getName());
+ LOG.warn("Iterating through all the interfaces to find interface: {}", key.getName());
+
// Or else just perform full dump and do inefficient filtering
requestFuture = futureJvpp.swInterfaceDump(request);
ifaces = V3poUtils.getReply(requestFuture.toCompletableFuture());