You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2022/05/27 02:10:04 UTC

[GitHub] [rocketmq] ni-ze commented on issue #4381: 版本4.9.2 参数transactionCheckMax和transactionCheckInterval在broker.conf中配置,不起作用

ni-ze commented on issue #4381:
URL: https://github.com/apache/rocketmq/issues/4381#issuecomment-1139212170

   If your format likes:
   ```xml
   transactionCheckInterval=29*1000
   ```
   this setting will not take effect.
   
   ```xml
   public void setTransactionCheckInterval(long transactionCheckInterval) {
           this.transactionCheckInterval = transactionCheckInterval;
       }
   ```
   Above code is the set method of BrokerConfig, configuration item in broker.conf must has same type with the method parameter, that is to say, transactionCheckInterval can not be something like 29*1000, 29000 is ok.
   
   Can you add a note for everyone's attention in broker.conf or somewhere alse?


-- 
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: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org