Skip to content

Commit 427830d

Browse files
opensearch-trigger-bot[bot]github-actions[bot]
authored andcommitted
Revert "Mute all flaky IndicesRequestCacheIT tests (opensearch-project#14077)" (opensearch-project#14238) (opensearch-project#14239)
This reverts commit fbe048f. Muting these tests was only intended to be temporary to unblock the 2.15 release. (cherry picked from commit 90ef844) Signed-off-by: Andrew Ross <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: kkewwei <[email protected]>
1 parent 7294c80 commit 427830d

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

-8
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";
@@ -759,7 +757,6 @@ public void testCacheClearAPIRemovesStaleKeysWhenStalenessThresholdIsLow() throw
759757
}
760758

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

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

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

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

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

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

0 commit comments

Comments
 (0)