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
6 changes: 0 additions & 6 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,12 +360,6 @@ tests:
- class: org.elasticsearch.xpack.ilm.DataStreamAndIndexLifecycleMixingTests
method: testIndexTemplateSwapsILMForDataStreamLifecycle
issue: https://github.com/elastic/elasticsearch/issues/124886
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterTests
method: testExplicitNull {p0=false}
issue: https://github.com/elastic/elasticsearch/issues/124891
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterTests
method: testExplicitNull {p0=true}
issue: https://github.com/elastic/elasticsearch/issues/124892
- class: org.elasticsearch.packaging.test.BootstrapCheckTests
method: test20RunWithBootstrapChecks
issue: https://github.com/elastic/elasticsearch/issues/124940
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public void setup() throws Exception {

@Override
protected Settings nodeSettings(int nodeOrdinal, Settings otherSettings) {
long batchSizeInBytes = randomLongBetween(0, ByteSizeValue.ofKb(1).getBytes());
long batchSizeInBytes = randomLongBetween(1, ByteSizeValue.ofKb(1).getBytes());
return Settings.builder()
.put(otherSettings)
.put(LicenseSettings.SELF_GENERATED_LICENSE_TYPE.getKey(), "trial")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ private static ClusterService createClusterService(boolean useLegacyFormat) {
ClusterState clusterState = ClusterState.builder(new ClusterName("test")).metadata(metadata).build();
ClusterService clusterService = mock(ClusterService.class);
when(clusterService.state()).thenReturn(clusterState);
long batchSizeInBytes = randomLongBetween(0, ByteSizeValue.ofKb(1).getBytes());
long batchSizeInBytes = randomLongBetween(1, ByteSizeValue.ofKb(1).getBytes());
Settings settings = Settings.builder().put(INDICES_INFERENCE_BATCH_SIZE.getKey(), ByteSizeValue.ofBytes(batchSizeInBytes)).build();
when(clusterService.getSettings()).thenReturn(settings);
when(clusterService.getClusterSettings()).thenReturn(new ClusterSettings(settings, Set.of(INDICES_INFERENCE_BATCH_SIZE)));
Expand Down