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 <lperry@simplemachines.com.au>

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

Closes #3843 from leigh-perry/trunk
This commit is contained in:
lperry 2017-09-13 17:52:45 +01:00 committed by Damian Guy
parent 49b992dd8b
commit c42bfc0d51
1 changed files with 1 additions and 1 deletions

View File

@ -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>.";