Github user FlorianHockmann commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/802#discussion_r190319039
--- 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 --
No specific reason, I just ran into this timeout multiple times and I
assumed that others could run into the same problem with slow systems / a
smaller VM. But I can of course revert this change if the timeout shouldn't
have such a high value for this test.
---