@@ -631,7 +631,6 @@ public void testCacheWithFilteredAlias() throws InterruptedException {
631
631
assertCacheState (client , index , 2 , 2 );
632
632
}
633
633
634
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/11374" )
635
634
public void testProfileDisableCache () throws Exception {
636
635
Client client = client ();
637
636
String index = "index" ;
@@ -674,7 +673,6 @@ public void testProfileDisableCache() throws Exception {
674
673
}
675
674
}
676
675
677
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/12308" )
678
676
public void testCacheWithInvalidation () throws Exception {
679
677
Client client = client ();
680
678
String index = "index" ;
@@ -760,7 +758,6 @@ public void testCacheClearAPIRemovesStaleKeysWhenStalenessThresholdIsLow() throw
760
758
}
761
759
762
760
// 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" )
764
761
public void testStaleKeysCleanupWithLowThreshold () throws Exception {
765
762
int cacheCleanIntervalInMillis = 1 ;
766
763
String node = internalCluster ().startNode (
@@ -807,7 +804,6 @@ public void testStaleKeysCleanupWithLowThreshold() throws Exception {
807
804
}
808
805
809
806
// 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" )
811
807
public void testCacheCleanupOnEqualStalenessAndThreshold () throws Exception {
812
808
int cacheCleanIntervalInMillis = 1 ;
813
809
String node = internalCluster ().startNode (
@@ -986,7 +982,6 @@ public void testStaleKeysRemovalWithoutExplicitThreshold() throws Exception {
986
982
}
987
983
988
984
// 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" )
990
985
public void testCacheCleanupWithDefaultSettings () throws Exception {
991
986
int cacheCleanIntervalInMillis = 1 ;
992
987
String node = internalCluster ().startNode (
@@ -1027,7 +1022,6 @@ public void testCacheCleanupWithDefaultSettings() throws Exception {
1027
1022
}
1028
1023
1029
1024
// staleness threshold updates flows through to the cache cleaner
1030
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13949" )
1031
1025
public void testDynamicStalenessThresholdUpdate () throws Exception {
1032
1026
int cacheCleanIntervalInMillis = 1 ;
1033
1027
String node = internalCluster ().startNode (
@@ -1175,7 +1169,6 @@ public void testCacheCleanupAfterIndexDeletion() throws Exception {
1175
1169
}
1176
1170
1177
1171
// 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" )
1179
1172
public void testStaleKeysCleanupWithMultipleIndices () throws Exception {
1180
1173
int cacheCleanIntervalInMillis = 10 ;
1181
1174
String node = internalCluster ().startNode (
@@ -1230,7 +1223,6 @@ public void testStaleKeysCleanupWithMultipleIndices() throws Exception {
1230
1223
}, cacheCleanIntervalInMillis * 2 , TimeUnit .MILLISECONDS );
1231
1224
}
1232
1225
1233
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13600" )
1234
1226
public void testDeleteAndCreateSameIndexShardOnSameNode () throws Exception {
1235
1227
String node_1 = internalCluster ().startNode (Settings .builder ().build ());
1236
1228
Client client = client (node_1 );
0 commit comments