From 9c6d5b127439617afe393248dcc9662c4e96282f Mon Sep 17 00:00:00 2001 From: Kunal Kotwani Date: Tue, 21 Mar 2023 13:37:29 -0700 Subject: [PATCH] Mute failing searchable snapshot integ tests Signed-off-by: Kunal Kotwani --- .../java/org/opensearch/snapshots/SearchableSnapshotIT.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/internalClusterTest/java/org/opensearch/snapshots/SearchableSnapshotIT.java b/server/src/internalClusterTest/java/org/opensearch/snapshots/SearchableSnapshotIT.java index 4a802793c6c7a..5f5e0a0912140 100644 --- a/server/src/internalClusterTest/java/org/opensearch/snapshots/SearchableSnapshotIT.java +++ b/server/src/internalClusterTest/java/org/opensearch/snapshots/SearchableSnapshotIT.java @@ -522,6 +522,7 @@ private boolean isFileCacheEmpty(FileCacheStats stats) { return stats.getUsed().getBytes() == 0L && stats.getActive().getBytes() == 0L; } + @AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/6738") public void testPruneFileCacheOnIndexDeletion() throws Exception { final String snapshotName = "test-snap"; final String repoName = "test-repo"; @@ -544,6 +545,7 @@ public void testPruneFileCacheOnIndexDeletion() throws Exception { assertAllNodesFileCacheEmpty(); } + @AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/6686") public void testCacheFilesAreClosedAfterUse() throws Exception { final int numReplicasIndex = randomIntBetween(1, 4); final String indexName = "test-idx";