Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix RemoteCloneIndex flaky test by using sync FS repo #15037

Merged
merged 2 commits into from
Aug 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading