Skip to content

Commit 022acba

Browse files
sachinpkaleSachin Kale
andauthored
Disable pinned timestamp flag and mute testRemoteStoreCleanupForDeletedIndex (opensearch-project#15598)
Signed-off-by: Sachin Kale <[email protected]> Co-authored-by: Sachin Kale <[email protected]>
1 parent b23c9de commit 022acba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

server/src/internalClusterTest/java/org/opensearch/snapshots/DeleteSnapshotIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ public void testDeleteMultipleShallowCopySnapshotsCase3() throws Exception {
285285
assert (getLockFilesInRemoteStore(remoteStoreEnabledIndexName, REMOTE_REPO_NAME).length == 0);
286286
}
287287

288+
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/9208")
288289
public void testRemoteStoreCleanupForDeletedIndex() throws Exception {
289290
disableRepoConsistencyCheck("Remote store repository is being used in the test");
290291
final Path remoteStoreRepoPath = randomRepoPath();

test/framework/src/main/java/org/opensearch/test/OpenSearchIntegTestCase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2886,7 +2886,7 @@ private static Settings buildRemoteStoreNodeAttributes(
28862886
}
28872887
settings.put(RemoteStoreSettings.CLUSTER_REMOTE_STORE_PATH_TYPE_SETTING.getKey(), randomFrom(PathType.values()));
28882888
settings.put(RemoteStoreSettings.CLUSTER_REMOTE_STORE_TRANSLOG_METADATA.getKey(), randomBoolean());
2889-
settings.put(RemoteStoreSettings.CLUSTER_REMOTE_STORE_PINNED_TIMESTAMP_ENABLED.getKey(), randomBoolean());
2889+
settings.put(RemoteStoreSettings.CLUSTER_REMOTE_STORE_PINNED_TIMESTAMP_ENABLED.getKey(), false);
28902890
return settings.build();
28912891
}
28922892

0 commit comments

Comments
 (0)