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

chia7712 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 cc869d9ee97 MINOR: Fix help message for downgrade feature flag in 
kafka-features.sh (#20813)
cc869d9ee97 is described below

commit cc869d9ee97c440c1ba0950d5a6e0b3cbb80cff9
Author: Ming-Yen Chung <[email protected]>
AuthorDate: Mon Nov 3 22:14:40 2025 +0800

    MINOR: Fix help message for downgrade feature flag in kafka-features.sh 
(#20813)
    
    The [original 
text](https://github.com/apache/kafka/pull/13459/files#diff-ce84e11f146fd8913d7e76fce74fc238d41466e689deb0599c8d7cb7cc6790ddL123-L125)
    is `Downgrade`
    
    Reviewers: Federico Valeri <[email protected]>, Ken Huang
     <[email protected]>, Chia-Ping Tsai <[email protected]>
---
 tools/src/main/java/org/apache/kafka/tools/FeatureCommand.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/src/main/java/org/apache/kafka/tools/FeatureCommand.java 
b/tools/src/main/java/org/apache/kafka/tools/FeatureCommand.java
index 87e4c228baf..3f1f309abf5 100644
--- a/tools/src/main/java/org/apache/kafka/tools/FeatureCommand.java
+++ b/tools/src/main/java/org/apache/kafka/tools/FeatureCommand.java
@@ -153,7 +153,7 @@ public class FeatureCommand {
 
     private static void addDowngradeParser(Subparsers subparsers) {
         Subparser downgradeParser = subparsers.addParser("downgrade")
-                .help("Upgrade one or more feature flags.");
+                .help("Downgrade one or more feature flags.");
         downgradeParser.addArgument("--metadata")
                 .help("DEPRECATED -- The level to which we should downgrade 
the metadata. For example, 3.3-IV0.")
                 .action(store());

Reply via email to