You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 30, 2025. It is now read-only.
in logging.cc:
maximum of file_length_ is 0xFFFFFFFF
when --max_log_size is larger than 4096 (0xFFFFFFFF >> 20)
line 1108 if (static_cast<int>(file_length_ >> 20) >= MaxLogSize() || PidHasChanged()) {
the first condition will never satisfied.