Skip to content

Commit

Permalink
fix default naming
Browse files Browse the repository at this point in the history
  • Loading branch information
d-rk committed Jan 16, 2024
1 parent 4980bf4 commit ff82d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/describe/describe-topic.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func newDescribeTopicCmd() *cobra.Command {
}

cmdDescribeTopic.Flags().StringVarP(&flags.OutputFormat, "output", "o", flags.OutputFormat, "output format. One of: json|yaml|wide")
cmdDescribeTopic.Flags().StringVarP((*string)(&flags.PrintConfigs), "print-configs", "c", "non_default", "print configs. One of none|no_defaults|all")
cmdDescribeTopic.Flags().StringVarP((*string)(&flags.PrintConfigs), "print-configs", "c", "no_defaults", "print configs. One of none|no_defaults|all")
cmdDescribeTopic.Flags().BoolVarP(&flags.SkipEmptyPartitions, "skip-empty", "s", false, "show only partitions that have a messages")

return cmdDescribeTopic
Expand Down

0 comments on commit ff82d92

Please sign in to comment.