Browse Source

MINOR: Fix closing code tag in producer config docs (#12718)

Reviewers: David Jacot <djacot@confluent.io>, Luke Chen <showuon@gmail.com>
pull/12721/head
Mickael Maison 2 years ago committed by GitHub
parent
commit
a7a026cabb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java

2
clients/src/main/java/org/apache/kafka/clients/producer/ProducerConfig.java

@ -105,7 +105,7 @@ public class ProducerConfig extends AbstractConfig { @@ -105,7 +105,7 @@ public class ProducerConfig extends AbstractConfig {
"If a broker cannot process produce requests from a partition for <code>" + PARTITIONER_AVAILABILITY_TIMEOUT_MS_CONFIG + "</code> time, "
+ "the partitioner treats that partition as not available. If the value is 0, this logic is disabled. "
+ "Note: this setting has no effect if a custom partitioner is used or <code>" + PARTITIONER_ADPATIVE_PARTITIONING_ENABLE_CONFIG
+ "<code/> is set to 'false'";
+ "</code> is set to 'false'";
/** <code>partitioner.ignore.keys</code> */
public static final String PARTITIONER_IGNORE_KEYS_CONFIG = "partitioner.ignore.keys";

Loading…
Cancel
Save