Skip to content

Commit a6724d3

Browse files
authored
Mute more flaky tests (#18142)
These are some of the most frequent offenders for failing builds. All have existing issues open for tracking their fixes. Signed-off-by: Andrew Ross <[email protected]>
1 parent fae1453 commit a6724d3

File tree

6 files changed

+6
-1
lines changed

6 files changed

+6
-1
lines changed

build.gradle

-1
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,6 @@ subprojects {
551551
includeClasses.add("org.opensearch.snapshots.SnapshotStatusApisIT")
552552
includeClasses.add("org.opensearch.test.rest.ClientYamlTestSuiteIT")
553553
includeClasses.add("org.opensearch.upgrade.DetectEsInstallationTaskTests")
554-
includeClasses.add("org.opensearch.cluster.MinimumClusterManagerNodesIT")
555554
}
556555
}
557556
}

plugins/transport-reactor-netty4/src/javaRestTest/java/org/opensearch/rest/ReactorNetty4StreamingStressIT.java

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public void tearDown() throws Exception {
4444
super.tearDown();
4545
}
4646

47+
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/15840")
4748
public void testCloseClientStreamingRequest() throws Exception {
4849
final VirtualTimeScheduler scheduler = VirtualTimeScheduler.create(true);
4950

server/src/internalClusterTest/java/org/opensearch/cluster/MinimumClusterManagerNodesIT.java

+1
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ public void testTwoNodesNoClusterManagerBlock() throws Exception {
250250
}
251251
}
252252

253+
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/14289")
253254
public void testThreeNodesNoClusterManagerBlock() throws Exception {
254255
internalCluster().setBootstrapClusterManagerNodeIndex(2);
255256

server/src/internalClusterTest/java/org/opensearch/indices/replication/SegmentReplicationResizeRequestIT.java

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
@OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 2)
3232
public class SegmentReplicationResizeRequestIT extends SegmentReplicationBaseIT {
3333

34+
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/17552")
3435
public void testCreateShrinkIndexThrowsExceptionWhenReplicasBehind() throws Exception {
3536

3637
// create index with -1 as refresh interval as we are blocking segrep and we want to control refreshes.

server/src/internalClusterTest/java/org/opensearch/remotestore/RemoteStorePinnedTimestampsGarbageCollectionIT.java

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
package org.opensearch.remotestore;
1010

11+
import org.apache.lucene.tests.util.LuceneTestCase;
1112
import org.opensearch.action.support.IndicesOptions;
1213
import org.opensearch.common.blobstore.BlobPath;
1314
import org.opensearch.common.collect.Tuple;
@@ -35,6 +36,7 @@
3536
import static org.opensearch.index.remote.RemoteStoreEnums.DataType.METADATA;
3637
import static org.opensearch.test.hamcrest.OpenSearchAssertions.assertNoFailures;
3738

39+
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/16088")
3840
@OpenSearchIntegTestCase.ClusterScope(scope = OpenSearchIntegTestCase.Scope.TEST, numDataNodes = 0)
3941
public class RemoteStorePinnedTimestampsGarbageCollectionIT extends RemoteStoreBaseIntegTestCase {
4042
static final String INDEX_NAME = "remote-store-test-idx-1";

server/src/test/java/org/opensearch/search/aggregations/startree/MetricAggregatorTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ protected Codec getCodec(
137137
return new Composite101Codec(Lucene101Codec.Mode.BEST_SPEED, mapperService, testLogger);
138138
}
139139

140+
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/18110")
140141
public void testStarTreeDocValues() throws IOException {
141142
final List<Supplier<Integer>> MAX_LEAF_DOC_VARIATIONS = List.of(
142143
() -> 1,

0 commit comments

Comments
 (0)