Skip to content

Commit

Permalink
Explicitly set include discovery nodes flag in reloadSecureSetting re…
Browse files Browse the repository at this point in the history
…quest. (#15972) (#15992)

(cherry picked from commit 620db0a)

Signed-off-by: Swetha Guptha <[email protected]>
  • Loading branch information
opensearch-trigger-bot[bot] authored Sep 23, 2024
1 parent 34b8888 commit 6bc4071
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,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 @@ -87,7 +87,7 @@ public NodesReloadSecureSettingsRequest(StreamInput in) throws IOException {
* nodes.
*/
public NodesReloadSecureSettingsRequest(String... nodesIds) {
super(nodesIds);
super(true, nodesIds);
}

@Nullable
Expand Down

0 comments on commit 6bc4071

Please sign in to comment.