From: Maros Marsalek Date: Mon, 6 Jun 2016 13:34:54 +0000 (+0200) Subject: Increase jvpp connection timeout X-Git-Tag: v16.09-rc1~324 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2f0a7a880cece8d3f464be0e481089c6db562fdc;p=vpp.git Increase jvpp connection timeout Change-Id: I4d52c113336deac80dfcbad91b21a7a70eea2213 Signed-off-by: Maros Marsalek --- diff --git a/vpp-api/java/jvpp/jvpp.c b/vpp-api/java/jvpp/jvpp.c index 6cc05530d37..56c43c9b272 100644 --- a/vpp-api/java/jvpp/jvpp.c +++ b/vpp-api/java/jvpp/jvpp.c @@ -133,8 +133,8 @@ JNIEXPORT jint JNICALL Java_org_openvpp_jvpp_VppJNIConnection_clientConnect M(CONTROL_PING, control_ping); S; - // wait for results: - timeout = clib_time_now (&clib_time) + 1.0; + // wait for results: Current time + 10 seconds is the timeout + timeout = clib_time_now (&clib_time) + 10.0; rv = VNET_API_ERROR_RESPONSE_NOT_READY; while (clib_time_now (&clib_time) < timeout) { if (jm->result_ready == 1) {