This is an automated email from the ASF dual-hosted git repository.
kenhuuu 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 c0dcf5dae6 Increase timeout in GremlinExecutorTest CTR.
c0dcf5dae6 is described below
commit c0dcf5dae61cb4adf6ae45a83342533da202d79b
Author: Ken Hu <[email protected]>
AuthorDate: Fri Jul 10 09:53:21 2026 -0700
Increase timeout in GremlinExecutorTest CTR.
Done to prevent flakiness in CI for tests
shouldCancelTimeoutOnSuccessfulScript and
shouldCancelTimeoutOnSuccessfulEval
---
.../apache/tinkerpop/gremlin/groovy/engine/GremlinExecutorTest.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutorTest.java
b/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutorTest.java
index 8b0c180ee2..455025bcc3 100644
---
a/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutorTest.java
+++
b/gremlin-groovy/src/test/java/org/apache/tinkerpop/gremlin/groovy/engine/GremlinExecutorTest.java
@@ -460,7 +460,7 @@ public class GremlinExecutorTest {
@Test
public void shouldCancelTimeoutOnSuccessfulScript() throws Exception {
- final long evaluationTimeout = 5_000;
+ final long evaluationTimeout = 15_000;
final GremlinExecutor gremlinExecutor = GremlinExecutor.build()
.evaluationTimeout(evaluationTimeout)
.create();
@@ -473,7 +473,7 @@ public class GremlinExecutorTest {
@Test
public void shouldCancelTimeoutOnSuccessfulEval() throws Exception {
- final long evaluationTimeout = 5_000;
+ final long evaluationTimeout = 15_000;
final GremlinExecutor gremlinExecutor = GremlinExecutor.build()
.evaluationTimeout(evaluationTimeout)
.create();