You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ew...@apache.org on 2016/11/04 20:29:36 UTC

kafka git commit: MINOR: missing fullstop in doc for `max.partition.fetch.bytes`

Repository: kafka
Updated Branches:
  refs/heads/trunk 0a659e50f -> 7868e6577


MINOR: missing fullstop in doc for `max.partition.fetch.bytes`

Author: Shikhar Bhushan <sh...@schmizz.net>

Reviewers: Ewen Cheslack-Postava <ew...@confluent.io>

Closes #1969 from shikhar/patch-2


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

Branch: refs/heads/trunk
Commit: 7868e657757d66aed13546dcdba97feeba8f1b14
Parents: 0a659e5
Author: Shikhar Bhushan <sh...@schmizz.net>
Authored: Fri Nov 4 13:29:31 2016 -0700
Committer: Ewen Cheslack-Postava <me...@ewencp.org>
Committed: Fri Nov 4 13:29:31 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/kafka/clients/consumer/ConsumerConfig.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/7868e657/clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java
----------------------------------------------------------------------
diff --git a/clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java b/clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java
index ae791b0..13cc4c4 100644
--- a/clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java
+++ b/clients/src/main/java/org/apache/kafka/clients/consumer/ConsumerConfig.java
@@ -140,7 +140,7 @@ public class ConsumerConfig extends AbstractConfig {
             "will return. If the first message in the first non-empty partition of the fetch is larger than this limit, the " +
             "message will still be returned to ensure that the consumer can make progress. The maximum message size " +
             "accepted by the broker is defined via <code>message.max.bytes</code> (broker config) or " +
-            "<code>max.message.bytes</code> (topic config). See " + FETCH_MAX_BYTES_CONFIG + " for limiting the consumer request size";
+            "<code>max.message.bytes</code> (topic config). See " + FETCH_MAX_BYTES_CONFIG + " for limiting the consumer request size.";
     public static final int DEFAULT_MAX_PARTITION_FETCH_BYTES = 1 * 1024 * 1024;
 
     /** <code>send.buffer.bytes</code> */