Repository: kafka
Updated Branches:
  refs/heads/trunk 49b992dd8 -> c42bfc0d5


MINOR: Fix JavaDoc for StreamsConfig.PROCESSING_GUARANTEE_CONFIG

The contribution is my original work and I license the work to the project 
under the project's open source licence.

Author: lperry <lpe...@simplemachines.com.au>

Reviewers: Matthias J. Sax <matth...@confluent.io>, Damian Guy 
<damian....@gmail.com>

Closes #3843 from leigh-perry/trunk


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

Branch: refs/heads/trunk
Commit: c42bfc0d51e6691b4b5672ef7c8a1bedcd452d7f
Parents: 49b992d
Author: lperry <lpe...@simplemachines.com.au>
Authored: Wed Sep 13 17:52:45 2017 +0100
Committer: Damian Guy <damian....@gmail.com>
Committed: Wed Sep 13 17:52:45 2017 +0100

----------------------------------------------------------------------
 streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kafka/blob/c42bfc0d/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
----------------------------------------------------------------------
diff --git a/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java 
b/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
index 6b0e245..446f941 100644
--- a/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
+++ b/streams/src/main/java/org/apache/kafka/streams/StreamsConfig.java
@@ -230,7 +230,7 @@ public class StreamsConfig extends AbstractConfig {
     public static final String POLL_MS_CONFIG = "poll.ms";
     private static final String POLL_MS_DOC = "The amount of time in 
milliseconds to block waiting for input.";
 
-    /** {@code cache.max.bytes.buffering} */
+    /** {@code processing.guarantee} */
     public static final String PROCESSING_GUARANTEE_CONFIG = 
"processing.guarantee";
     private static final String PROCESSING_GUARANTEE_DOC = "The processing 
guarantee that should be used. Possible values are <code>" + AT_LEAST_ONCE + 
"</code> (default) and <code>" + EXACTLY_ONCE + "</code>.";
 

Reply via email to