This is an automated email from the ASF dual-hosted git repository. Cole-Greer pushed a commit to branch docs-3.7 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 95ff4730fa216034d220d612edb27f69971c8c20 Author: Cole Greer <[email protected]> AuthorDate: Thu May 28 12:08:13 2026 -0700 Increase timeout to 90s to accommodate Block 184 (shortestPath) The nested g.inject(g.withComputer()...) block triggers cold Spark initialization which can take 50-60s. 90s gives comfortable headroom while still serving as a failsafe against genuine hangs. --- .../src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java b/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java index 93799314a4..530a26a79a 100644 --- a/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java +++ b/tools/tinkerpop-docs/src/main/java/org/apache/tinkerpop/gremlin/docs/GremlinConsole.java @@ -39,7 +39,7 @@ public class GremlinConsole implements Closeable { static final String PROMPT = "gremlin>"; static final String ERROR_PROMPT = "Display stack trace?"; - private static final long DEFAULT_TIMEOUT_MS = 60_000; + private static final long DEFAULT_TIMEOUT_MS = 90_000; private static final int EOF = -1; private final Process process;
