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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 947c414a8c0 MINOR: Fix missing argument in kafka-features.sh upgrade 
doc (#19160)
947c414a8c0 is described below

commit 947c414a8c0d30223c725a91507b2d891d5851e2
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 1e3a4501d91..5893fabe22b 100644
--- a/docs/upgrade.html
+++ b/docs/upgrade.html
@@ -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.

Reply via email to