lihaosky commented on code in PR #13846: URL: https://github.com/apache/kafka/pull/13846#discussion_r1238821866
########## streams/src/test/java/org/apache/kafka/streams/StreamsConfigTest.java: ########## @@ -1375,6 +1375,18 @@ public void shouldReturnDefaultClientSupplier() { assertTrue(supplier instanceof DefaultKafkaClientSupplier); } + @Test + public void shouldReturnDefaultRackAwareAssignmentConfig() { + final String strategy = streamsConfig.getString(StreamsConfig.RACK_AWARE_ASSIGNMENT_STRATEGY); + assertEquals(StreamsConfig.RACK_AWARE_ASSSIGNMENT_STRATEGY_NONE, strategy); + } + Review Comment: Make sense. I can use raw values -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org