vvcephei commented on a change in pull request #9477: URL: https://github.com/apache/kafka/pull/9477#discussion_r510157496
########## File path: streams/test-utils/src/main/java/org/apache/kafka/streams/TopologyTestDriver.java ########## @@ -297,7 +297,15 @@ public TopologyTestDriver(final Topology topology, private TopologyTestDriver(final InternalTopologyBuilder builder, final Properties config, final long initialWallClockTimeMs) { - final StreamsConfig streamsConfig = new ClientUtils.QuietStreamsConfig(config); + final Properties configCopy = new Properties(); + configCopy.putAll(config); + if (!configCopy.containsKey(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG)) { + configCopy.setProperty(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, "dummy-bootstrap-host:0"); + } + if (!configCopy.containsKey(StreamsConfig.APPLICATION_ID_CONFIG)) { Review comment: Good idea! I didn't think of that. I'm sorry that I didn't see this until after I merged. ---------------------------------------------------------------- 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