Skip to content

Commit

Permalink
push
Browse files Browse the repository at this point in the history
  • Loading branch information
Ranjith Ramachandra committed Sep 2, 2023
1 parent 741afb8 commit 299df96
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -258,6 +258,7 @@ void checkWriteAction(ActionRequestBuilder<?, ?> builder) {
}
}

@AwaitsFix(bugUrl = "hello.com")
public void testNoClusterManagerActionsWriteClusterManagerBlock() throws Exception {
Settings settings = Settings.builder()
.put(AutoCreateIndex.AUTO_CREATE_INDEX_SETTING.getKey(), false)
Expand Down Expand Up @@ -296,7 +297,7 @@ public void testNoClusterManagerActionsWriteClusterManagerBlock() throws Excepti
assertTrue(state.blocks().hasGlobalBlockWithId(NoClusterManagerBlockService.NO_CLUSTER_MANAGER_BLOCK_ID));
});

GetResponse getResponse = clientToClusterManagerlessNode.prepareGet("test1", "1").get();
GetResponse getResponse = clientToClusterManagerlessNode.prepareGet("test1", "1").setPreference("_primary").get();
assertExists(getResponse);

SearchResponse countResponse = clientToClusterManagerlessNode.prepareSearch("test1")
Expand Down

0 comments on commit 299df96

Please sign in to comment.