This is an automated email from the ASF dual-hosted git repository. spmallette pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit c76df03747ff9826f3cb0658880e87ae7b85b704 Author: Stephen Mallette <[email protected]> AuthorDate: Wed Jan 5 20:29:38 2022 -0500 Minor fix to test CTR --- .../org/apache/tinkerpop/gremlin/server/GremlinDriverIntegrateTest.java | 1 + 1 file changed, 1 insertion(+) 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 7c63341..f8f5f09 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 @@ -1901,6 +1901,7 @@ public class GremlinDriverIntegrateTest extends AbstractGremlinServerIntegration try { client.submit("1+1").all().get(3000, TimeUnit.MILLISECONDS); + fail("Should throw exception on the retry"); } catch (RuntimeException re2) { assertThat(re2.getCause(), instanceOf(NoHostAvailableException.class)); }
