Skip to content

Commit

Permalink
chore: make appname global on the cli
Browse files Browse the repository at this point in the history
  • Loading branch information
sighphyre committed Jul 19, 2024
1 parent 70fe5cf commit aa7d08e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ pub struct CliArgs {
pub instance_id: String,

/// App name. Used for metrics reporting.
#[clap(short, long, env, default_value = "unleash-edge")]
#[clap(short, long, env, global = true, default_value = "unleash-edge")]
pub app_name: String,

#[arg(long, hide = true, global = true)]
Expand Down

0 comments on commit aa7d08e

Please sign in to comment.