You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2016/09/12 10:43:36 UTC

[09/10] tinkerpop git commit: CTR: Increased timeout in a Gremlin Server integration test as it constantly timed out in Docker.

CTR: Increased timeout in a Gremlin Server integration test as it constantly timed out in Docker.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/01423242
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/01423242
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/01423242

Branch: refs/heads/TINKERPOP-1280
Commit: 014232423a0caaf66da4f76615ee959230588e2b
Parents: a1ba988
Author: Daniel Kuppitz <da...@hotmail.com>
Authored: Mon Sep 12 12:39:57 2016 +0200
Committer: Daniel Kuppitz <da...@hotmail.com>
Committed: Mon Sep 12 12:39:57 2016 +0200

----------------------------------------------------------------------
 .../tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/01423242/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
----------------------------------------------------------------------
diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
index 7314243..4f255b9 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java
@@ -518,7 +518,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration
         });
 
         // countdown should have reached zero as results should have eventually been all returned and processed
-        assertTrue(latch.await(20, TimeUnit.SECONDS));
+        assertTrue(latch.await(30, TimeUnit.SECONDS));
 
         final List<Integer> expected = IntStream.range(1, 10).boxed().collect(Collectors.toList());
         IntStream.range(0, requests).forEach(r ->