Skip to content

Commit

Permalink
reduce desired daemon soft fd limit to 8k for Windows compatibility (k…
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Dec 2, 2023
1 parent 84ef150 commit 1a1fea1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kaspad/src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use kaspa_wrpc_server::service::{Options as WrpcServerOptions, ServerCounters as

/// Desired soft FD limit that needs to be configured
/// for the kaspad process.
pub const DESIRED_DAEMON_SOFT_FD_LIMIT: u64 = 16 * 1024;
pub const DESIRED_DAEMON_SOFT_FD_LIMIT: u64 = 8 * 1024;
/// Minimum acceptable soft FD limit for the kaspad
/// process. (Rusty Kaspa will operate with the minimal
/// acceptable limit of `4096`, but a setting below
Expand Down

0 comments on commit 1a1fea1

Please sign in to comment.