dan-s1 commented on code in PR #9807:
URL: https://github.com/apache/nifi/pull/9807#discussion_r1999265518
##########
nifi-extension-bundles/nifi-kafka-bundle/nifi-kafka-3-service/src/test/java/org/apache/nifi/kafka/service/Kafka3ConnectionServiceBaseIT.java:
##########
@@ -267,7 +265,7 @@ void testProduceConsumeRecord() {
final RecordSummary summary = producerService.complete();
assertNotNull(summary);
- final PollingContext pollingContext = new PollingContext(GROUP_ID,
Collections.singleton(TOPIC), AutoOffsetReset.EARLIEST, Duration.ofSeconds(1));
+ final PollingContext pollingContext = new PollingContext(GROUP_ID,
Collections.singleton(TOPIC), AutoOffsetReset.EARLIEST);
Review Comment:
```suggestion
final PollingContext pollingContext = new PollingContext(GROUP_ID,
Set.of(TOPIC), AutoOffsetReset.EARLIEST);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]