You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2015/04/22 18:56:10 UTC

incubator-tinkerpop git commit: Provide a longer timeout on NIO transport tests.

Repository: incubator-tinkerpop
Updated Branches:
  refs/heads/master 3fafd0275 -> 790c32ced


Provide a longer timeout on NIO transport tests.

Not sure why but that test seems to lag in maven.  Seems fast in Intellij.


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

Branch: refs/heads/master
Commit: 790c32ced1269c961cb332612c38f929167efe72
Parents: 3fafd02
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Apr 22 12:55:13 2015 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Apr 22 12:55:13 2015 -0400

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


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/790c32ce/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
----------------------------------------------------------------------
diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
index 3147432..1634443 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
@@ -238,7 +238,7 @@ public class GremlinServerIntegrateTest extends AbstractGremlinServerIntegration
             final CountDownLatch latch = new CountDownLatch(2);
             client.submit(request, r -> latch.countDown());
 
-            assertTrue(latch.await(3000, TimeUnit.MILLISECONDS));
+            assertTrue(latch.await(30000, TimeUnit.MILLISECONDS));
         }
     }