itantiger commented on a change in pull request #9790: URL: https://github.com/apache/kafka/pull/9790#discussion_r550151238
########## File path: core/src/test/scala/unit/kafka/tools/ConsumerPerformanceTest.scala ########## @@ -96,6 +97,28 @@ class ConsumerPerformanceTest { assertEquals("test", config.topic) assertEquals(10, config.numMessages) } + + @Test + def testConfigWithRecognizedOptionOverride(): Unit = { + val propsFile = TestUtils.tempFile() + val propsStream = Files.newOutputStream(propsFile.toPath) + propsStream.write("group.id=test_group_id\n".getBytes()) + propsStream.write("client.id=test_client_id".getBytes()) + propsStream.close() Review comment: @chia7712 Please take a look :) Is there anything else that needs to be optimized? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org