Repository: kafka
Updated Branches:
  refs/heads/0.11.0 d798c5159 -> cdb5975bb


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 <hmclo...@gmail.com>

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

Closes #4094 from hmcl/trunk_MINOR_Doc_InflightProp

(cherry picked from commit 7fdafda9796fc8033c5f77bf19be17be462e1b4e)
Signed-off-by: Ismael Juma <ism...@juma.me.uk>


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

Branch: refs/heads/0.11.0
Commit: cdb5975bbeb1416fcc70214d5b777f780e2e9e5b
Parents: d798c51
Author: Hugo Louro <hmclo...@gmail.com>
Authored: Thu Oct 19 10:35:18 2017 +0100
Committer: Ismael Juma <ism...@juma.me.uk>
Committed: Thu Oct 19 10:35:39 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/cdb5975b/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 7690cac..7abaa97 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
@@ -148,7 +148,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>

Reply via email to