fix: make --http-debug flag visible in help text (#228)

This commit is contained in:
Daniel Moran
2021-08-20 10:27:36 -04:00
committed by GitHub
parent 13799e7662
commit 285103df13
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,7 @@
### Bug Fixes
1. [221](https://github.com/influxdata/influx-cli/pull/221): Fix shell completion for top-level `influx` commands.
1. [228](https://github.com/influxdata/influx-cli/pull/228): Make global `--http-debug` flag visible in help text.
## v2.1.0 [2021-07-29]

View File

@ -202,8 +202,7 @@ func coreFlags() []cli.Flag {
EnvVar: "INFLUX_TRACE_DEBUG_ID",
},
&cli.BoolFlag{
Name: httpDebugFlagName,
Hidden: true,
Name: httpDebugFlagName,
},
}
}