You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ij...@apache.org on 2017/10/19 09:35:22 UTC

kafka git commit: MINOR: Correct KafkaProducer Javadoc spelling of property 'max.in.flight.requests.per.connection'

Repository: kafka
Updated Branches:
  refs/heads/trunk 6cb649b56 -> 7fdafda97


MINOR: Correct KafkaProducer Javadoc spelling of property 'max.in.flight.requests.per.connection'

Currently, in branches _trunk_, _0.11.0_, and _1.0_ the property **max.in.flight.requests.per.connection** is incorrectly misspelled as _max.inflight.requests.per.connection_

harshach ijuma guozhangwang can you please review. Thank you.

Author: Hugo Louro <hm...@gmail.com>

Reviewers: Ismael Juma <is...@juma.me.uk>

Closes #4094 from hmcl/trunk_MINOR_Doc_InflightProp


Project: http://git-wip-us.apache.org/repos/asf/kafka/repo
Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/7fdafda9
Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/7fdafda9
Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/7fdafda9

Branch: refs/heads/trunk
Commit: 7fdafda9796fc8033c5f77bf19be17be462e1b4e
Parents: 6cb649b
Author: Hugo Louro <hm...@gmail.com>
Authored: Thu Oct 19 10:35:18 2017 +0100
Committer: Ismael Juma <is...@juma.me.uk>
Committed: Thu Oct 19 10:35:18 2017 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/kafka/clients/producer/KafkaProducer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/7fdafda9/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java
----------------------------------------------------------------------
diff --git a/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java b/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java
index bb05e2c..60b1a9d 100644
--- a/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java
+++ b/clients/src/main/java/org/apache/kafka/clients/producer/KafkaProducer.java
@@ -151,7 +151,7 @@ import static org.apache.kafka.common.serialization.ExtendedSerializer.Wrapper.e
  * <p>
  * To enable idempotence, the <code>enable.idempotence</code> configuration must be set to true. If set, the
  * <code>retries</code> config will be defaulted to <code>Integer.MAX_VALUE</code>, the
- * <code>max.inflight.requests.per.connection</code> config will be defaulted to <code>1</code>,
+ * <code>max.in.flight.requests.per.connection</code> config will be defaulted to <code>1</code>,
  * and <code>acks</code> config will be defaulted to <code>all</code>. There are no API changes for the idempotent
  * producer, so existing applications will not need to be modified to take advantage of this feature.
  * </p>