Skip to content

Commit

Permalink
fix: restore short arg for deprecated option
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Beaumont <[email protected]>
  • Loading branch information
michaelbeaumont committed Oct 9, 2024
1 parent 4ea4a82 commit 0a890e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control-plane/agents/src/bin/ha/node/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct Cli {
node_name: String,

/// IP address and port for the ha node-agent to listen on.
#[clap(short, long = "grpc-endpoint")]
#[clap(short = 'g', long = "grpc-endpoint")]
deprecated_grpc_endpoint: Option<SocketAddr>,

#[clap(long, default_value_t = DEFAULT_NODE_AGENT_SERVER_IP)]
Expand Down

0 comments on commit 0a890e8

Please sign in to comment.