Increase ROOT_ENTRY_LIMIT to 1331

This commit is contained in:
Yuki Okushi 2021-10-20 11:28:11 +09:00
parent 21d02bf132
commit 396a4f4984
No known key found for this signature in database
GPG Key ID: DABA5B072961C18A

View File

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