wernerdv commented on code in PR #18201: URL: https://github.com/apache/kafka/pull/18201#discussion_r1945310182
########## core/src/main/scala/kafka/coordinator/transaction/TransactionStateManager.scala: ########## @@ -37,14 +38,17 @@ import org.apache.kafka.common.{KafkaException, TopicPartition} import org.apache.kafka.coordinator.transaction.{TransactionLogConfig, TransactionStateManagerConfig} import org.apache.kafka.server.common.{RequestLocal, TransactionVersion} import org.apache.kafka.server.config.ServerConfigs -import org.apache.kafka.server.record.BrokerCompressionType import org.apache.kafka.server.storage.log.FetchIsolation import org.apache.kafka.server.util.Scheduler import org.apache.kafka.storage.internals.log.AppendOrigin import scala.jdk.CollectionConverters._ import scala.collection.mutable +object TransactionStateManager { + val EnforcedCompression: Compression = Compression.NONE + private val EnforcedRequiredAcks: Short = -1.toShort Review Comment: Done -- 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