This commit is contained in:
Chris Antaki 2025-01-20 15:46:53 -08:00
parent b34c2464b3
commit 5a0800c0fd
2 changed files with 2 additions and 2 deletions

View file

@ -441,7 +441,7 @@ async fn async_main(opts: Opts, cancel: CancellationToken) -> anyhow::Result<()>
})?;
match librqbit::try_increase_nofile_limit() {
Ok(limit) => info!(limit = limit, "inreased open file limit"),
Ok(limit) => info!(limit = limit, "increased open file limit"),
Err(e) => warn!("failed increasing open file limit: {:#}", e),
};

View file

@ -389,7 +389,7 @@ async fn start() {
.unwrap();
match librqbit::try_increase_nofile_limit() {
Ok(limit) => info!(limit = limit, "inreased open file limit"),
Ok(limit) => info!(limit = limit, "increased open file limit"),
Err(e) => warn!("failed increasing open file limit: {:#}", e),
};