This is an automated email from the ASF dual-hosted git repository.
andreac 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 f68caa9321 Modified test which is meant to validate long response to
use a different traversal as it had exposed an unrelated bug with usage of
inject in repeat without the RepeatUnrollStrategy automatically unrolling it.
Created https://issues.apache.org/jira/browse/TINKERPOP-3194 to address the
issue. CTR to fix the master branch build. See also
https://issues.apache.org/jira/browse/TINKERPOP-3194.
f68caa9321 is described below
commit f68caa9321b4dc89dfec6871e8edc48d8cf1d42e
Author: Andrea Child <[email protected]>
AuthorDate: Fri Sep 26 15:56:58 2025 -0700
Modified test which is meant to validate long response to use a different
traversal as it had exposed an unrelated bug with usage of inject in repeat
without the RepeatUnrollStrategy automatically unrolling it. Created
https://issues.apache.org/jira/browse/TINKERPOP-3194 to address the issue. CTR
to fix the master branch build. See also
https://issues.apache.org/jira/browse/TINKERPOP-3194.
---
.../org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
index 3705f4ad86..e0fb281065 100644
---
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
+++
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerIntegrateTest.java
@@ -838,7 +838,7 @@ public class GremlinServerIntegrateTest extends
AbstractGremlinServerIntegration
@Test
public void shouldHavePartialContentWithLongResultsCollection() throws
Exception {
try (SimpleClient client = TestClientFactory.createSimpleHttpClient())
{
- final RequestMessage request =
RequestMessage.build("g.inject('a').repeat(inject('a')).times(100)").create();
+ final RequestMessage request =
RequestMessage.build("g.inject(0).repeat(union(identity(),
identity())).times(7)").create();
final List<ResponseMessage> responses = client.submit(request);
assertThat(responses.size(), Matchers.greaterThan(1));