mirror of https://github.com/apache/kafka.git
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:
parent
49b992dd8b
commit
c42bfc0d51
|
@ -230,7 +230,7 @@ public class StreamsConfig extends AbstractConfig {
|
||||||
public static final String POLL_MS_CONFIG = "poll.ms";
|
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.";
|
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";
|
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>.";
|
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>.";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue