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
The following commit(s) were added to refs/heads/master by this push:
new 022619b056 Remove userAgent from Gremlin-Java per-request options list
022619b056 is described below
commit 022619b056ec0055350044ba2d7a6ef7665d1626
Author: Stephen Mallette <[email protected]>
AuthorDate: Mon Sep 14 12:51:57 2026 +0000
Remove userAgent from Gremlin-Java per-request options list
The Gremlin-Java Connecting section listed userAgent among the options
that can be set per request, but the HTTP driver does not apply a
per-request user agent, so that value has no effect. Drop userAgent from
the list, leaving batchSize, bulkResults, materializeProperties and
timeoutMillis.
Assisted-by: Kiro:claude-opus-4.8
---
docs/src/reference/gremlin-variants.asciidoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/src/reference/gremlin-variants.asciidoc
b/docs/src/reference/gremlin-variants.asciidoc
index 93d7da2ba2..b759418f3b 100644
--- a/docs/src/reference/gremlin-variants.asciidoc
+++ b/docs/src/reference/gremlin-variants.asciidoc
@@ -1062,7 +1062,7 @@ GraphTraversalSource g = traversal().with(conf);
List<Vertex> vertices = g.with(Tokens.TIMEOUT_MILLIS,
500L).V().out("knows").toList()
----
-The following options are allowed on a per-request basis in this fashion:
`batchSize`, `bulkResults`, `userAgent`,
+The following options are allowed on a per-request basis in this fashion:
`batchSize`, `bulkResults`,
`materializeProperties` and `timeoutMillis`. Use of `Tokens` to reference
these options is preferred.
NOTE: When submitting traversals through `DriverRemoteConnection`,
`bulkResults` defaults to `true` per-request