AndrewJSchofield commented on code in PR #19542: URL: https://github.com/apache/kafka/pull/19542#discussion_r2068323373
########## core/src/test/scala/unit/kafka/server/KafkaApisTest.scala: ########## @@ -10935,7 +11343,20 @@ class KafkaApisTest extends Logging { @Test def testShareGroupHeartbeatRequestTopicAuthorizationFailed(): Unit = { - metadataCache = new KRaftMetadataCache(brokerId, () => KRaftVersion.KRAFT_VERSION_0) + metadataCache = { + val cache = new KRaftMetadataCache(brokerId, () => KRaftVersion.KRAFT_VERSION_1) + val delta = new MetadataDelta(MetadataImage.EMPTY); + delta.replay(new FeatureLevelRecord() + .setName(MetadataVersion.FEATURE_NAME) + .setFeatureLevel(MetadataVersion.MINIMUM_VERSION.featureLevel()) + ) + delta.replay(new FeatureLevelRecord() + .setName(ShareVersion.FEATURE_NAME) + .setFeatureLevel(ShareVersion.SV_1.featureLevel()) + ) + cache.setImage(delta.apply(MetadataProvenance.EMPTY)) Review Comment: Fixed -- 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