core: increase max open files limit

This commit is contained in:
nym21
2025-06-24 12:18:49 +02:00
parent 1103e538a5
commit 39c470ad7a
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ pub fn setrlimit() -> io::Result<()> {
rlimit::setrlimit(
Resource::NOFILE,
no_file_limit.0.max(210_000),
no_file_limit.0.max(420_000),
no_file_limit.1,
)?;