We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7be1b42 commit 0b434a6Copy full SHA for 0b434a6
1 file changed
src/pika_conf.cc
@@ -451,7 +451,7 @@ int PikaConf::Load() {
451
rate_limiter_auto_tuned_ = at == "yes" || at.empty();
452
// if rate limiter autotune enable, `rate_limiter_bandwidth_` will still be respected as an upper-bound.
453
if (rate_limiter_auto_tuned_) {
454
- rate_limiter_bandwidth_ = 10 * 1024 * 1024 * 1024; // 10GB/s
+ rate_limiter_bandwidth_ = 10LL * 1024 * 1024 * 1024; // 10GB/s
455
}
456
457
// max_write_buffer_num
0 commit comments