Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/utils: actually show Aliased Flags as deprecated #23317

Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 8 additions & 2 deletions cmd/utils/flags_legacy.go
Expand Up @@ -74,7 +74,13 @@ func showDeprecated(*cli.Context) {
fmt.Println("The following flags are deprecated and will be removed in the future!")
fmt.Println("--------------------------------------------------------------------")
fmt.Println()
// TODO remove when there are newly deprecated flags
fmt.Println("no deprecated flags to show at this time")
// These are the deprecated aliased flags
fmt.Println("--nousb")
Zachinquarantine marked this conversation as resolved.
Show resolved Hide resolved
fmt.Println("--rpc")
fmt.Println("--rpcaddr value")
fmt.Println("--rpcport value")
fmt.Println("--rpccorsdomain value")
fmt.Println("--rpcvhosts value")
fmt.Println("--rpcapi value")
fmt.Println()
}