Github user spmallette commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/802#discussion_r190319710
--- Diff:
gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/ResultQueueTest.java
---
@@ -281,7 +281,7 @@ public void shouldDrainAsItemsArrive() throws Exception
{
latch.countDown();
});
- assertThat(latch.await(3000, TimeUnit.MILLISECONDS), is(true));
+ assertThat(latch.await(10000, TimeUnit.MILLISECONDS),
is(true));
--- End diff --
not need to revert if it was causing hassles. just curious.
---