This is an automated email from the ASF dual-hosted git repository.

cmccabe pushed a commit to branch 4.0
in repository https://gitbox.apache.org/repos/asf/kafka.git

commit ed435374106f24c045b2b4edb62233cc7ff2de4b
Author: Mahsa Seifikar <[email protected]>
AuthorDate: Fri Mar 7 16:57:58 2025 -0500

    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 <[email protected]>
---
 docs/upgrade.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/upgrade.html b/docs/upgrade.html
index 50e43ca6dc4..5d3d6caec72 100644
--- a/docs/upgrade.html
+++ b/docs/upgrade.html
@@ -29,7 +29,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.

Reply via email to