Reduce ROOT_ENTRY_LIMIT to 1500

This commit is contained in:
Yuki Okushi 2020-12-31 08:26:24 +09:00
parent 4530da7ff0
commit 9fb9f290b4

View File

@ -7,7 +7,7 @@
const ENTRY_LIMIT: usize = 1000;
// FIXME: The following limits should be reduced eventually.
const ROOT_ENTRY_LIMIT: usize = 1580;
const ROOT_ENTRY_LIMIT: usize = 1500;
const ISSUES_ENTRY_LIMIT: usize = 2830;
fn check_entries(path: &Path, bad: &mut bool) {