Skip to content

Commit 5cbb64c

Browse files
ES|QL: unmute generative tests and reduce forks
1 parent 580831a commit 5cbb64c

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
@@ -522,12 +522,6 @@ tests:
522522
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
523523
method: testCohereEmbeddings
524524
issue: https://github.com/elastic/elasticsearch/issues/130010
525-
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
526-
method: test
527-
issue: https://github.com/elastic/elasticsearch/issues/130067
528-
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
529-
method: test
530-
issue: https://github.com/elastic/elasticsearch/issues/130067
531525
- class: org.elasticsearch.action.support.ThreadedActionListenerTests
532526
method: testRejectionHandling
533527
issue: https://github.com/elastic/elasticsearch/issues/130129

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)