lianetm commented on code in PR #18172:
URL: https://github.com/apache/kafka/pull/18172#discussion_r1884259254
##########
streams/integration-tests/src/test/java/org/apache/kafka/streams/integration/utils/IntegrationTestUtils.java:
##########
@@ -1198,6 +1200,7 @@ private static <K, V> KafkaConsumer<K, V>
createConsumer(final Properties consum
filtered.putAll(consumerConfig);
filtered.setProperty(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG,
"earliest");
filtered.setProperty(ConsumerConfig.ENABLE_AUTO_COMMIT_CONFIG, "true");
+ filtered.setProperty(ConsumerConfig.GROUP_PROTOCOL_CONFIG,
GroupProtocol.CLASSIC.name);
Review Comment:
this is not used by the resetter tool, but it's needed to ensure resetters
tests like `testReprocessingFromScratchAfterResetWithIntermediateUserTopic`
pass without relying on the default protocol (they use another consumer to
"waitUntilMinKeyValueRecordsReceived").
--
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]