diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-05-11 09:20:08 +0200 |
---|---|---|
committer | Maros Marsalek <mmarsale@cisco.com> | 2016-05-11 09:22:27 +0200 |
commit | a506ae8b5a63a88886f842bd0722466db67b4f96 (patch) | |
tree | eca09ec926c5854c19b7c96d0accda452b8b3a61 /v3po/v3po2vpp/src | |
parent | 70c818bfa7ad3b8a2d70e579068cd89f7fd72d94 (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')
-rw-r--r-- | v3po/v3po2vpp/src/main/java/io/fd/honeycomb/v3po/translate/v3po/interfacesstate/InterfaceUtils.java | 5 |
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()); |