mirror of https://github.com/apache/kafka.git
Use `--force` instead of `--yes` in `AclCommand`
To be consistent with `ConfigCommand` and `TopicCommand`. No release includes this option yet, so we can simply change it.
This commit is contained in:
parent
5653249e08
commit
0bb27af39b
|
@ -331,7 +331,7 @@ object AclCommand {
|
||||||
|
|
||||||
val helpOpt = parser.accepts("help", "Print usage information.")
|
val helpOpt = parser.accepts("help", "Print usage information.")
|
||||||
|
|
||||||
val yesOpt = parser.accepts("yes", "Assume Yes to all queries and do not prompt.")
|
val yesOpt = parser.accepts("force", "Assume Yes to all queries and do not prompt.")
|
||||||
|
|
||||||
val options = parser.parse(args: _*)
|
val options = parser.parse(args: _*)
|
||||||
|
|
||||||
|
|
|
@ -577,7 +577,7 @@ Kafka Authorization management CLI can be found under bin directory with all the
|
||||||
<td>Convenience</td>
|
<td>Convenience</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>--yes</td>
|
<td>--force</td>
|
||||||
<td> Convenience option to assume yes to all queries and do not prompt.</td>
|
<td> Convenience option to assume yes to all queries and do not prompt.</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
<td>Convenience</td>
|
<td>Convenience</td>
|
||||||
|
|
Loading…
Reference in New Issue