mirror of https://github.com/apache/kafka.git
MINOR: Fix missing argument in kafka-features.sh upgrade doc (#19160)
Running `bin/kafka-features.sh upgrade --release-version 4.0` results in the following error. This PR fixes the issue by adding the required argument. `kafka-features: error: one of the arguments --bootstrap-server --bootstrap-controller is required.` Reviewers: Colin P. McCabe <cmccabe@apache.org>
This commit is contained in:
parent
343bc995f4
commit
947c414a8c
|
@ -39,7 +39,7 @@
|
|||
</li>
|
||||
<li>Once the cluster's behavior and performance has been verified, finalize the upgrade by running
|
||||
<code>
|
||||
bin/kafka-features.sh upgrade --release-version 4.0
|
||||
bin/kafka-features.sh --bootstrap-server localhost:9092 upgrade --release-version 4.0
|
||||
</code>
|
||||
</li>
|
||||
<li>Note that cluster metadata downgrade is not supported in this version since it has metadata changes.
|
||||
|
|
Loading…
Reference in New Issue