rondagostino commented on pull request #10105: URL: https://github.com/apache/kafka/pull/10105#issuecomment-777517133
There are 6 failing tests across these 3 test classes: **kafka.server.KafkaConfigTest** ``` KafkaConfigTest > testFromPropsInvalid() FAILED org.opentest4j.AssertionFailedError: Expected exception for property `broker.heartbeat.interval.ms` with invalid value `-1` was not thrown ==> Expected java.lang.Exception to be thrown, but nothing was thrown. ``` **AutoTopicCreationManagerTest** ``` AutoTopicCreationManagerTest > testCreateTxnTopic() FAILED Wanted but not invoked: brokerToControllerChannelManager.sendRequest( CreateTopicsRequestData(topics=[CreatableTopic(name='__transaction_state', numPartitions=2, replicationFactor=2, assignments=[], configs=[])], timeoutMs=100, validateOnly=false), <any kafka.server.ControllerRequestCompletionHandler> ); -> at kafka.server.AutoTopicCreationManagerTest.testCreateTopic(AutoTopicCreationManagerTest.scala:119) Actually, there were zero interactions with this mock. AutoTopicCreationManagerTest > testCreateOffsetTopic() FAILED Wanted but not invoked: brokerToControllerChannelManager.sendRequest( CreateTopicsRequestData(topics=[CreatableTopic(name='__consumer_offsets', numPartitions=2, replicationFactor=2, assignments=[], configs=[])], timeoutMs=100, validateOnly=false), <any kafka.server.ControllerRequestCompletionHandler> ); -> at kafka.server.AutoTopicCreationManagerTest.testCreateTopic(AutoTopicCreationManagerTest.scala:119) Actually, there were zero interactions with this mock. AutoTopicCreationManagerTest > testCreateNonInternalTopic() FAILED Wanted but not invoked: brokerToControllerChannelManager.sendRequest( CreateTopicsRequestData(topics=[CreatableTopic(name='topic', numPartitions=1, replicationFactor=1, assignments=[], configs=[])], timeoutMs=100, validateOnly=false), <any kafka.server.ControllerRequestCompletionHandler> ); -> at kafka.server.AutoTopicCreationManagerTest.testCreateTopic(AutoTopicCreationManagerTest.scala:119) Actually, there were zero interactions with this mock. ``` **MetadataRequestWithForwardingTest** ``` MetadataRequestWithForwardingTest > testAutoCreateOfCollidingTopics() FAILED org.opentest4j.AssertionFailedError: expected: <Set(LEADER_NOT_AVAILABLE, INVALID_TOPIC_EXCEPTION)> but was: <Set(UNKNOWN_TOPIC_OR_PARTITION)> MetadataRequestWithForwardingTest > testAutoTopicCreation() FAILED org.opentest4j.AssertionFailedError: expected: <LEADER_NOT_AVAILABLE> but was: <UNKNOWN_TOPIC_OR_PARTITION> ``` ---------------------------------------------------------------- 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