Skip to content

Commit cb0317d

Browse files
committed
review
1 parent 9176a1f commit cb0317d

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ without operational burden or harming the cluster's performance
246246
* Java 8 compatibility
247247
* Throttle control and broker liveliness management
248248
* Clean draining shutdown cycle
249+
* Manual Pause / Resume (pausing of partitions is also automatic, whenever back pressure has built up)
249250

250251
//image:https://codecov.io/gh/astubbs/parallel-consumer/branch/master/graph/badge.svg["Coverage",https://codecov.io/gh/astubbs/parallel-consumer]
251252
//image:https://travis-ci.com/astubbs/parallel-consumer.svg?branch=master["Build Status", link="https://travis-ci.com/astubbs/parallel-consumer"]
@@ -465,7 +466,6 @@ See {issues_link}/12[issue #12], and the `ParallelConsumer` JavaDoc:
465466
* @param <K> key consume / produce key type
466467
* @param <V> value consume / produce value type
467468
* @see AbstractParallelEoSStreamProcessor
468-
* @see #poll(Consumer)
469469
*/
470470
----
471471

parallel-consumer-core/src/main/java/io/confluent/parallelconsumer/internal/AbstractParallelEoSStreamProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public abstract class AbstractParallelEoSStreamProcessor<K, V> implements Parall
6060
* Key for the work container descriptor that will be added to the {@link MDC diagnostic context} while inside a
6161
* user function.
6262
*/
63-
public static final String MDC_WORK_CONTAINER_DESCRIPTOR = "offset";
63+
private static final String MDC_WORK_CONTAINER_DESCRIPTOR = "offset";
6464

6565
@Getter(PROTECTED)
6666
protected final ParallelConsumerOptions options;

parallel-consumer-core/src/test/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<!-- primary -->
3030
<logger name="io.confluent.parallelconsumer" level="info"/>
31-
<!-- <logger name="io.confluent.parallelconsumer" level="debug"/>-->
31+
<logger name="io.confluent.parallelconsumer" level="debug"/>
3232

3333
<!-- <logger name="io.confluent.csid" level="debug"/>-->
3434

src/docs/README.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ without operational burden or harming the cluster's performance
244244
* Java 8 compatibility
245245
* Throttle control and broker liveliness management
246246
* Clean draining shutdown cycle
247+
* Manual Pause / Resume (pausing of partitions is also automatic, whenever back pressure has built up)
247248

248249
//image:https://codecov.io/gh/astubbs/parallel-consumer/branch/master/graph/badge.svg["Coverage",https://codecov.io/gh/astubbs/parallel-consumer]
249250
//image:https://travis-ci.com/astubbs/parallel-consumer.svg?branch=master["Build Status", link="https://travis-ci.com/astubbs/parallel-consumer"]

0 commit comments

Comments
 (0)