Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,12 +275,6 @@ tests:
- class: org.elasticsearch.xpack.ml.integration.MlJobIT
method: testGetJobs_GivenSingleJob
issue: https://github.com/elastic/elasticsearch/issues/113655
- class: org.elasticsearch.xpack.security.authz.interceptor.SearchRequestCacheDisablingInterceptorTests
method: testHasRemoteIndices
issue: https://github.com/elastic/elasticsearch/issues/113660
- class: org.elasticsearch.xpack.security.authz.interceptor.SearchRequestCacheDisablingInterceptorTests
method: testRequestCacheWillBeDisabledWhenSearchRemoteIndices
issue: https://github.com/elastic/elasticsearch/issues/113659
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
method: test {p0=range/20_synthetic_source/Date range}
issue: https://github.com/elastic/elasticsearch/issues/113874
Expand Down Expand Up @@ -428,4 +422,4 @@ tests:
# issue: "https://github.com/elastic/elasticsearch/..."
# - class: "org.elasticsearch.xpack.esql.**"
# method: "test {union_types.MultiIndexIpStringStatsInline *}"
# issue: "https://github.com/elastic/elasticsearch/..."
# issue: "https://github.com/elastic/elasticsearch/..."
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void testRequestCacheWillBeDisabledWhenSearchRemoteIndices() {
0,
3,
String[]::new,
() -> randomAlphaOfLengthBetween(0, 5) + ":" + randomAlphaOfLengthBetween(3, 8)
() -> randomAlphaOfLengthBetween(1, 5) + ":" + randomAlphaOfLengthBetween(3, 8)
);
final ArrayList<String> allIndices = Arrays.stream(ArrayUtils.concat(localIndices, remoteIndices))
.collect(Collectors.toCollection(ArrayList::new));
Expand Down Expand Up @@ -121,7 +121,7 @@ public void testHasRemoteIndices() {
0,
3,
String[]::new,
() -> randomAlphaOfLengthBetween(0, 5) + ":" + randomAlphaOfLengthBetween(3, 8)
() -> randomAlphaOfLengthBetween(1, 5) + ":" + randomAlphaOfLengthBetween(3, 8)
);
final ArrayList<String> allIndices = Arrays.stream(ArrayUtils.concat(localIndices, remoteIndices))
.collect(Collectors.toCollection(ArrayList::new));
Expand Down