diff --git a/gateway/src/commands/init.rs b/gateway/src/commands/init.rs index bfa12bd66d..58dc427f8b 100644 --- a/gateway/src/commands/init.rs +++ b/gateway/src/commands/init.rs @@ -82,11 +82,11 @@ pub struct Init { statistics_service_url: Option, /// Allows this gateway to run an embedded network requester for minimal network overhead - #[clap(long, conflicts_with = "with_ip_packet_router")] + #[clap(long)] with_network_requester: bool, /// Allows this gateway to run an embedded network requester for minimal network overhead - #[clap(long, hide = true, conflicts_with = "with_network_requester")] + #[clap(long, hide = true)] with_ip_packet_router: bool, // ##### NETWORK REQUESTER FLAGS ##### diff --git a/gateway/src/commands/run.rs b/gateway/src/commands/run.rs index 76f7629de5..3418c216ac 100644 --- a/gateway/src/commands/run.rs +++ b/gateway/src/commands/run.rs @@ -87,11 +87,11 @@ pub struct Run { statistics_service_url: Option, /// Allows this gateway to run an embedded network requester for minimal network overhead - #[arg(long, conflicts_with = "with_ip_packet_router")] + #[arg(long)] with_network_requester: Option, /// Allows this gateway to run an embedded network requester for minimal network overhead - #[arg(long, hide = true, conflicts_with = "with_network_requester")] + #[arg(long, hide = true)] with_ip_packet_router: Option, // ##### NETWORK REQUESTER FLAGS #####