Skip to content

Commit

Permalink
Fix RemoteCloneIndex flaky test by using sync FS repo (opensearch-pro…
Browse files Browse the repository at this point in the history
…ject#15037)

Signed-off-by: Gaurav Bafna <[email protected]>
  • Loading branch information
gbbafna authored and wangdongyu.danny committed Aug 22, 2024
1 parent f2a9b0a commit 33f479b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected boolean forbidPrivateIndexSettings() {

@Before
public void setup() {
asyncUploadMockFsRepo = true;
asyncUploadMockFsRepo = false;
}

public void testCreateCloneIndex() {
Expand Down Expand Up @@ -153,6 +153,7 @@ public void testCreateCloneIndex() {

}

@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/15056")
public void testCreateCloneIndexLowPriorityRateLimit() {
Version version = VersionUtils.randomIndexCompatibleVersion(random());
int numPrimaryShards = 1;
Expand Down Expand Up @@ -280,7 +281,7 @@ public void testCreateCloneIndexFailure() throws ExecutionException, Interrupted
throw new RuntimeException(e);
} finally {
setFailRate(REPOSITORY_NAME, 0);
ensureGreen();
ensureGreen(TimeValue.timeValueSeconds(40));
// clean up
client().admin()
.cluster()
Expand Down

0 comments on commit 33f479b

Please sign in to comment.