Skip to content

Commit c87bf08

Browse files
authored
chore: increase DESIRED_RLIMIT_NOFILE from 1024 to 2048 (#4998)
1 parent 8085387 commit c87bf08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/pixi_utils/src/rlimit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// The desired value for the RLIMIT_NOFILE resource limit. This is the number
22
/// of file descriptors that pixi should be able to open.
33
#[cfg(not(target_os = "windows"))]
4-
pub const DESIRED_RLIMIT_NOFILE: u64 = 1024;
4+
pub const DESIRED_RLIMIT_NOFILE: u64 = 2048;
55

66
/// Attempt to increase the RLIMIT_NOFILE resource limit to the desired value
77
/// for pixi. The desired value is defined by the `DESIRED_RLIMIT_NOFILE`

0 commit comments

Comments
 (0)