Skip to content

Commit

Permalink
Merge branch '3.4-dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
spmallette committed Sep 29, 2020
2 parents 9ca5d01 + 3a99ce2 commit f525f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/reference/gremlin-variants.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ request.
Cluster cluster = Cluster.open();
Client client = cluster.connect();
RequestOptions options = RequestOptions.build().timeout(500).create();
List<Result> result = client.submit("g.V()", options).all().get();
List<Result> result = client.submit("g.V().repeat(both()).times(100)", options).all().get();
----
==== Aliases
Expand Down Expand Up @@ -936,7 +936,7 @@ request.
[source,python]
----
result_set = client.submit('[1,2,3,4]', result_options={'evaluationTimeout': 5000})
result_set = client.submit('g.V().repeat(both()).times(100)', result_options={'evaluationTimeout': 5000})
----
The following options are allowed on a per-request basis in this fashion: `batchSize`, `requestId`, `userAgent` and
Expand Down

0 comments on commit f525f4f

Please sign in to comment.