hangc0276 commented on a change in pull request #11509:
URL: https://github.com/apache/pulsar/pull/11509#discussion_r683456597
##########
File path:
pulsar-client-admin-api/src/main/java/org/apache/pulsar/common/policies/data/impl/BacklogQuotaImpl.java
##########
@@ -37,7 +38,7 @@ public static BacklogQuotaImplBuilder builder() {
}
public static class BacklogQuotaImplBuilder implements
BacklogQuota.Builder {
- private long limitSize;
+ private long limitSize = -1 * 1024 * 1024 * 1024;
Review comment:
the default backlog limit size is -1GB, we use `-1 * GB` and define `GB
= 1024 * 1024 * 1024` is better.
--
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]