We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901340e commit 3d49ff4Copy full SHA for 3d49ff4
src/cli.rs
@@ -118,6 +118,8 @@ pub fn parser(pre_flight_settings: PreFlightSettings) -> Command {
118
Arg::new("vhost")
119
.short('V')
120
.long("vhost")
121
+ // IMPORTANT: this means that subcommands won't be able to override --vhost or -V,
122
+ // otherwise the parser will panic. MK.
123
.global(true)
124
.env("RABBITMQADMIN_TARGET_VHOST")
125
.help("target virtual host. Defaults to '/'"),
0 commit comments