HQebupt commented on a change in pull request #15011:
URL: https://github.com/apache/pulsar/pull/15011#discussion_r841187704
##########
File path:
pulsar-broker-common/src/main/java/org/apache/pulsar/broker/ServiceConfiguration.java
##########
@@ -2475,6 +2475,12 @@
)
private int transactionBufferClientMaxConcurrentRequests = 1000;
+ @FieldContext(
+ category = CATEGORY_TRANSACTION,
+ doc = "The transaction buffer client's operation timeout in
milliseconds."
+ )
+ private long transactionBufferClientOperationTimeoutInMills = 3000;
Review comment:
It's better to write in this way: `long
transactionBufferClientOperationTimeoutInMills = 3000L;` or `int
transactionBufferClientOperationTimeoutInMills = 3000;`
--
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]