[ISSUE #2162] Fix getBrokerConfig help info wrong description (#2163)

Co-authored-by: hechengyang <hechengyang@cmss.chinamobile.com>
This commit is contained in:
Chengyang He
2020-07-23 12:29:00 +08:00
committed by GitHub
parent 336f55c2db
commit 8c71dee631
@@ -48,11 +48,11 @@ public class GetBrokerConfigCommand implements SubCommand {
@Override
public Options buildCommandlineOptions(final Options options) {
Option opt = new Option("b", "brokerAddr", true, "update which broker");
Option opt = new Option("b", "brokerAddr", true, "get which broker");
opt.setRequired(false);
options.addOption(opt);
opt = new Option("c", "clusterName", true, "update which cluster");
opt = new Option("c", "clusterName", true, "get which cluster");
opt.setRequired(false);
options.addOption(opt);