diff --git a/cmd/utils/flags_legacy.go b/cmd/utils/flags_legacy.go index fb5fde6576959..a70c95d04f9f7 100644 --- a/cmd/utils/flags_legacy.go +++ b/cmd/utils/flags_legacy.go @@ -74,7 +74,7 @@ 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") - fmt.Println() + +for _, flag := range DeprecatedFlags { + fmt.Println(flag.String()) }