Skip to content

Commit

Permalink
Rename
Browse files Browse the repository at this point in the history
  • Loading branch information
iambriccardo committed Aug 26, 2024
1 parent fbe0b8b commit eadd1ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion relay/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ pub fn extract_config_args(matches: &ArgMatches) -> OverridableConfig {
secret_key: matches.get_one("secret_key").cloned(),
outcome_source: matches.get_one("source_id").cloned(),
shutdown_timeout: matches.get_one("shutdown_timeout").cloned(),
deployment: matches.get_one("environment").cloned(),
deployment: matches.get_one("deployment").cloned(),
}
}

Expand Down
6 changes: 3 additions & 3 deletions relay/src/cliapp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ pub fn make_app() -> Command {
),
)
.arg(
Arg::new("environment")
.long("environment")
.help("The environment in which Relay is run.")
Arg::new("deployment")
.long("deployment")
.help("The deployment type of this Relay.")
)
)
.subcommand(
Expand Down

0 comments on commit eadd1ef

Please sign in to comment.