Skip to content

Commit ebec2c3

Browse files
ES|QL: unmute generative tests and reduce forks (#130428)
1 parent efd1aaf commit ebec2c3

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

muted-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -540,14 +540,8 @@ tests:
540540
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
541541
method: testCohereEmbeddings
542542
issue: https://github.com/elastic/elasticsearch/issues/130010
543-
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
544-
method: test
545-
issue: https://github.com/elastic/elasticsearch/issues/130067
546543
- class: geoip.GeoIpMultiProjectIT
547544
issue: https://github.com/elastic/elasticsearch/issues/130073
548-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
549-
method: test
550-
issue: https://github.com/elastic/elasticsearch/issues/130067
551545
- class: org.elasticsearch.xpack.esql.action.EnrichIT
552546
method: testTopN
553547
issue: https://github.com/elastic/elasticsearch/issues/130122

x-pack/plugin/esql/qa/server/src/main/java/org/elasticsearch/xpack/esql/qa/rest/generative/command/pipe/ForkGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public CommandDescription generate(
3434
}
3535
}
3636

37-
int n = randomIntBetween(2, 8);
37+
int n = randomIntBetween(2, 3);
3838

3939
String cmd = " | FORK " + "( WHERE true ) ".repeat(n) + " | WHERE _fork == \"fork" + randomIntBetween(1, n) + "\" | DROP _fork";
4040

0 commit comments

Comments
 (0)