Skip to content

Commit

Permalink
Explicitly set include discovery nodes flag for reload secure setting…
Browse files Browse the repository at this point in the history
… request.

Signed-off-by: Swetha Guptha <[email protected]>
  • Loading branch information
Swetha Guptha committed Sep 18, 2024
1 parent e3bbc74 commit 3e70fc2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class NodesReloadSecureSettingsRequest extends BaseNodesRequest<NodesRelo
private SecureString secureSettingsPassword;

public NodesReloadSecureSettingsRequest() {
super((String[]) null);
super(true, (String[]) null);
}

public NodesReloadSecureSettingsRequest(StreamInput in) throws IOException {
Expand All @@ -84,7 +84,7 @@ public NodesReloadSecureSettingsRequest(StreamInput in) throws IOException {
* nodes.
*/
public NodesReloadSecureSettingsRequest(String... nodesIds) {
super(nodesIds);
super(true, nodesIds);
}

@Nullable
Expand Down

0 comments on commit 3e70fc2

Please sign in to comment.