mirror of https://github.com/apache/kafka.git
MINOR: fix TopicCommand warning message.format.version output (#18311)
Reviewers: Ismael Juma <ismael@juma.me.uk>, Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
77712d5218
commit
ab54901475
|
@ -173,7 +173,7 @@ public abstract class TopicCommand {
|
||||||
.forEach(pair -> props.setProperty(pair.get(0).trim(), pair.get(1).trim()));
|
.forEach(pair -> props.setProperty(pair.get(0).trim(), pair.get(1).trim()));
|
||||||
LogConfig.validate(props);
|
LogConfig.validate(props);
|
||||||
if (props.containsKey(TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG)) {
|
if (props.containsKey(TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG)) {
|
||||||
System.out.println("WARNING: The configuration ${TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG}=${props.getProperty(TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG)} is specified. " +
|
System.out.println("WARNING: The configuration " + TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG + "=" + props.getProperty(TopicConfig.MESSAGE_FORMAT_VERSION_CONFIG) + " is specified. " +
|
||||||
"This configuration will be ignored if the version is newer than the inter.broker.protocol.version specified in the broker or " +
|
"This configuration will be ignored if the version is newer than the inter.broker.protocol.version specified in the broker or " +
|
||||||
"if the inter.broker.protocol.version is 3.0 or newer. This configuration is deprecated and it will be removed in Apache Kafka 4.0.");
|
"if the inter.broker.protocol.version is 3.0 or newer. This configuration is deprecated and it will be removed in Apache Kafka 4.0.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue