This is an automated email from the ASF dual-hosted git repository.

chia7712 pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 4529cc4e986 MINOR: Fix transactionPartitionVerificationEnable return 
type (#17476)
4529cc4e986 is described below

commit 4529cc4e9861276ad456a07de8a3ddb1ef277f6c
Author: ClarkChen <[email protected]>
AuthorDate: Mon Oct 14 01:16:39 2024 +0800

    MINOR: Fix transactionPartitionVerificationEnable return type (#17476)
    
    Reviewers: Chia-Ping Tsai <[email protected]>
---
 .../org/apache/kafka/coordinator/transaction/TransactionLogConfig.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/transaction-coordinator/src/main/java/org/apache/kafka/coordinator/transaction/TransactionLogConfig.java
 
b/transaction-coordinator/src/main/java/org/apache/kafka/coordinator/transaction/TransactionLogConfig.java
index 9a083bc5a21..65d7a7a3bc5 100644
--- 
a/transaction-coordinator/src/main/java/org/apache/kafka/coordinator/transaction/TransactionLogConfig.java
+++ 
b/transaction-coordinator/src/main/java/org/apache/kafka/coordinator/transaction/TransactionLogConfig.java
@@ -117,7 +117,7 @@ public final class TransactionLogConfig {
     }
 
     // This is a broker dynamic config used for 
DynamicProducerStateManagerConfig
-    public Boolean transactionPartitionVerificationEnable() {
+    public boolean transactionPartitionVerificationEnable() {
         return 
config.getBoolean(TRANSACTION_PARTITION_VERIFICATION_ENABLE_CONFIG);
     }
 

Reply via email to