TaiJuWu commented on code in PR #18386: URL: https://github.com/apache/kafka/pull/18386#discussion_r1912041177
########## tests/kafkatest/services/kafka/kafka.py: ########## @@ -781,6 +780,12 @@ def prop_file(self, node): #update template configs with test override configs configs.update(override_configs) + # Due to compatibility issue for 3.3, we can't set multiple log dir + # see: https://issues.apache.org/jira/browse/KAFKA-14637 + if node.version == LATEST_3_3 and "downgrade" in str(self.context): + configs[config_property.LOG_DIRS] = configs[config_property.METADATA_LOG_DIR] + configs.pop(config_property.METADATA_LOG_DIR) + Review Comment: Just temp for internal test. -- 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