@@ -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" ;
@@ -759,7 +757,6 @@ public void testCacheClearAPIRemovesStaleKeysWhenStalenessThresholdIsLow() throw
759
757
}
760
758
761
759
// 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" )
763
760
public void testStaleKeysCleanupWithLowThreshold () throws Exception {
764
761
int cacheCleanIntervalInMillis = 1 ;
765
762
String node = internalCluster ().startNode (
@@ -806,7 +803,6 @@ public void testStaleKeysCleanupWithLowThreshold() throws Exception {
806
803
}
807
804
808
805
// 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" )
810
806
public void testCacheCleanupOnEqualStalenessAndThreshold () throws Exception {
811
807
int cacheCleanIntervalInMillis = 1 ;
812
808
String node = internalCluster ().startNode (
@@ -985,7 +981,6 @@ public void testStaleKeysRemovalWithoutExplicitThreshold() throws Exception {
985
981
}
986
982
987
983
// 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" )
989
984
public void testCacheCleanupWithDefaultSettings () throws Exception {
990
985
int cacheCleanIntervalInMillis = 1 ;
991
986
String node = internalCluster ().startNode (
@@ -1026,7 +1021,6 @@ public void testCacheCleanupWithDefaultSettings() throws Exception {
1026
1021
}
1027
1022
1028
1023
// staleness threshold updates flows through to the cache cleaner
1029
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13949" )
1030
1024
public void testDynamicStalenessThresholdUpdate () throws Exception {
1031
1025
int cacheCleanIntervalInMillis = 1 ;
1032
1026
String node = internalCluster ().startNode (
@@ -1174,7 +1168,6 @@ public void testCacheCleanupAfterIndexDeletion() throws Exception {
1174
1168
}
1175
1169
1176
1170
// 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" )
1178
1171
public void testStaleKeysCleanupWithMultipleIndices () throws Exception {
1179
1172
int cacheCleanIntervalInMillis = 10 ;
1180
1173
String node = internalCluster ().startNode (
@@ -1229,7 +1222,6 @@ public void testStaleKeysCleanupWithMultipleIndices() throws Exception {
1229
1222
}, cacheCleanIntervalInMillis * 2 , TimeUnit .MILLISECONDS );
1230
1223
}
1231
1224
1232
- @ AwaitsFix (bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/13600" )
1233
1225
public void testDeleteAndCreateSameIndexShardOnSameNode () throws Exception {
1234
1226
String node_1 = internalCluster ().startNode (Settings .builder ().build ());
1235
1227
Client client = client (node_1 );
0 commit comments