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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]