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 testNoMasterActionsWriteMasterBlock #42798

Merged
merged 1 commit into from
Jun 4, 2019
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 @@ -192,7 +192,6 @@ void checkWriteAction(ActionRequestBuilder<?, ?> builder) {
}
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/39688")
public void testNoMasterActionsWriteMasterBlock() throws Exception {
Settings settings = Settings.builder()
.put(AutoCreateIndex.AUTO_CREATE_INDEX_SETTING.getKey(), false)
Expand Down Expand Up @@ -264,8 +263,6 @@ public void testNoMasterActionsWriteMasterBlock() throws Exception {
assertThat(e.status(), equalTo(RestStatus.SERVICE_UNAVAILABLE));
}

disruptionScheme.stopDisrupting();

client().admin().cluster().prepareHealth().setWaitForGreenStatus().setWaitForNodes("3").get();
internalCluster().clearDisruptionScheme(true);
}
}