Decrease keepalive timeout to 5s
authorMaros Marsalek <[email protected]>
Fri, 9 Sep 2016 11:32:43 +0000 (13:32 +0200)
committerMaros Marsalek <[email protected]>
Fri, 9 Sep 2016 11:32:43 +0000 (13:32 +0200)
Change-Id: I5d3e49605686fd883f4f32065c72ad8e881ac2f3
Signed-off-by: Maros Marsalek <[email protected]>
v3po/v3po2vpp/src/main/java/io/fd/honeycomb/translate/v3po/vppstate/VersionCustomizer.java

index 128c39e..eedf764 100644 (file)
@@ -17,8 +17,8 @@
 package io.fd.honeycomb.translate.v3po.vppstate;
 
 import io.fd.honeycomb.translate.read.ReadContext;
-import io.fd.honeycomb.translate.spi.read.ReaderCustomizer;
 import io.fd.honeycomb.translate.read.ReadFailedException;
+import io.fd.honeycomb.translate.spi.read.ReaderCustomizer;
 import io.fd.honeycomb.translate.v3po.util.FutureJVppCustomizer;
 import io.fd.honeycomb.translate.v3po.util.TranslateUtils;
 import java.util.concurrent.CompletionStage;
@@ -38,11 +38,6 @@ public final class VersionCustomizer
     extends FutureJVppCustomizer
     implements ReaderCustomizer<Version, VersionBuilder> {
 
-    /**
-     * Default timeout for executing version read
-     */
-    private static final int DEFAULT_TIMEOUT_IN_SECONDS = 30;
-
     public VersionCustomizer(@Nonnull final FutureJVppCore futureJVppCore) {
         super(futureJVppCore);
     }
@@ -64,8 +59,7 @@ public final class VersionCustomizer
         try {
             // Execute with timeout
             final CompletionStage<ShowVersionReply> showVersionFuture = getFutureJVpp().showVersion(new ShowVersion());
-            final ShowVersionReply reply = TranslateUtils.getReplyForRead(showVersionFuture.toCompletableFuture(), id,
-                DEFAULT_TIMEOUT_IN_SECONDS);
+            final ShowVersionReply reply = TranslateUtils.getReplyForRead(showVersionFuture.toCompletableFuture(), id);
 
             builder.setBranch(TranslateUtils.toString(reply.version));
             builder.setName(TranslateUtils.toString(reply.program));