This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch travis-fix
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit aa6d5cf660797a543e7279bc5462ad9c525e9191
Author: stephen <[email protected]>
AuthorDate: Mon Nov 11 20:17:02 2019 -0500

    Make the first request in a synchronous fashion
---
 .../tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
index 07944e8..4273634 100644
--- 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
+++ 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
@@ -330,7 +330,7 @@ public class GremlinServerSessionIntegrateTest  extends 
AbstractGremlinServerInt
         final Cluster cluster = 
TestClientFactory.build().minInProcessPerConnection(16).maxInProcessPerConnection(64).create();
         final Client client = cluster.connect(name.getMethodName());
 
-        client.submitAsync("a=100;b=1000;c=10000;null");
+        client.submit("a=100;b=1000;c=10000;null").all().get();
         final int requests = 10000;
         final List<CompletableFuture<ResultSet>> futures = new 
ArrayList<>(requests);
         IntStream.range(0, requests).forEach(i -> {

Reply via email to