Skip to content

Commit

Permalink
Use non-deprecated reindex.remote.allowlist setting
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Ross <[email protected]>
  • Loading branch information
andrross committed Jan 29, 2025
1 parent ca5eb23 commit 2d18c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void tearDown() throws Exception {
}

private Settings crossClusterNodeSettings(ClusterInfo remote) {
Settings.Builder builder = Settings.builder().putList("reindex.remote.whitelist", remote.httpHost + ":" + remote.httpPort);
Settings.Builder builder = Settings.builder().putList("reindex.remote.allowlist", remote.httpHost + ":" + remote.httpPort);
return builder.build();
}

Expand Down

0 comments on commit 2d18c8a

Please sign in to comment.