Skip to content

Commit

Permalink
summonerd: disable console by default (#4176)
Browse files Browse the repository at this point in the history
## Describe your changes

The `tokio-console` flag for `summonerd` defaults to `"false"` which
evaluates to `true`. I'm leaving the console subscriber so that we can
activate the unstable flag on a whim, but we should not have it run by
default.

## Checklist before requesting a review

- [x] If this code contains consensus-breaking changes, I have added the
"consensus-breaking" label. Otherwise, I declare my belief that there
are not consensus-breaking changes, for the following reason:

  > Internal CLI change
  • Loading branch information
erwanor authored Apr 8, 2024
1 parent 65b8498 commit cde5e66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/summonerd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ operating the orchestration.
)]
struct Opt {
/// Enable Tokio Console support.
#[clap(long, default_value = "false")]
#[clap(long)]
tokio_console: bool,
/// Command to run.
#[clap(subcommand)]
Expand Down

0 comments on commit cde5e66

Please sign in to comment.