Skip to content

Commit 90ef844

Browse files
authored
Revert "Mute all flaky IndicesRequestCacheIT tests (opensearch-project#14077)" (opensearch-project#14238)
This reverts commit fbe048f. Muting these tests was only intended to be temporary to unblock the 2.15 release. Signed-off-by: Andrew Ross <[email protected]>
1 parent 10c0b77 commit 90ef844

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

server/src/internalClusterTest/java/org/opensearch/indices/IndicesRequestCacheIT.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,6 @@ public void testCacheWithFilteredAlias() throws InterruptedException {
631631
assertCacheState(client, index, 2, 2);
632632
}
633633

634-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/11374")
635634
public void testProfileDisableCache() throws Exception {
636635
Client client = client();
637636
String index = "index";
@@ -674,7 +673,6 @@ public void testProfileDisableCache() throws Exception {
674673
}
675674
}
676675

677-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/12308")
678676
public void testCacheWithInvalidation() throws Exception {
679677
Client client = client();
680678
String index = "index";
@@ -760,7 +758,6 @@ public void testCacheClearAPIRemovesStaleKeysWhenStalenessThresholdIsLow() throw
760758
}
761759

762760
// when staleness threshold is lower than staleness, it should clean the stale keys from cache
763-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13540")
764761
public void testStaleKeysCleanupWithLowThreshold() throws Exception {
765762
int cacheCleanIntervalInMillis = 1;
766763
String node = internalCluster().startNode(
@@ -807,7 +804,6 @@ public void testStaleKeysCleanupWithLowThreshold() throws Exception {
807804
}
808805

809806
// when staleness threshold is equal to staleness, it should clean the stale keys from cache
810-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13503")
811807
public void testCacheCleanupOnEqualStalenessAndThreshold() throws Exception {
812808
int cacheCleanIntervalInMillis = 1;
813809
String node = internalCluster().startNode(
@@ -986,7 +982,6 @@ public void testStaleKeysRemovalWithoutExplicitThreshold() throws Exception {
986982
}
987983

988984
// when cache cleaner interval setting is not set, cache cleaner is configured appropriately with the fall-back setting
989-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13711")
990985
public void testCacheCleanupWithDefaultSettings() throws Exception {
991986
int cacheCleanIntervalInMillis = 1;
992987
String node = internalCluster().startNode(
@@ -1027,7 +1022,6 @@ public void testCacheCleanupWithDefaultSettings() throws Exception {
10271022
}
10281023

10291024
// staleness threshold updates flows through to the cache cleaner
1030-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13949")
10311025
public void testDynamicStalenessThresholdUpdate() throws Exception {
10321026
int cacheCleanIntervalInMillis = 1;
10331027
String node = internalCluster().startNode(
@@ -1175,7 +1169,6 @@ public void testCacheCleanupAfterIndexDeletion() throws Exception {
11751169
}
11761170

11771171
// when staleness threshold is lower than staleness, it should clean the cache from all indices having stale keys
1178-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13437")
11791172
public void testStaleKeysCleanupWithMultipleIndices() throws Exception {
11801173
int cacheCleanIntervalInMillis = 10;
11811174
String node = internalCluster().startNode(
@@ -1230,7 +1223,6 @@ public void testStaleKeysCleanupWithMultipleIndices() throws Exception {
12301223
}, cacheCleanIntervalInMillis * 2, TimeUnit.MILLISECONDS);
12311224
}
12321225

1233-
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13600")
12341226
public void testDeleteAndCreateSameIndexShardOnSameNode() throws Exception {
12351227
String node_1 = internalCluster().startNode(Settings.builder().build());
12361228
Client client = client(node_1);

0 commit comments

Comments
 (0)