From 5cbd7f58a7daf118728501cdfa15459b7cf89145 Mon Sep 17 00:00:00 2001 From: flynn1973 Date: Tue, 27 Apr 2021 12:19:57 +0200 Subject: [PATCH] CFE-3625: Set Filedescriptor Limit to a more practial Size Ticket: CFE-3625 Changelog: Title --- libpromises/pipes_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libpromises/pipes_unix.c b/libpromises/pipes_unix.c index 0897e20502..fa344428b6 100644 --- a/libpromises/pipes_unix.c +++ b/libpromises/pipes_unix.c @@ -39,7 +39,7 @@ static bool CfSetuid(uid_t uid, gid_t gid); static int cf_pwait(pid_t pid); static pid_t *CHILDREN = NULL; /* GLOBAL_X */ -static int MAX_FD = 128; /* GLOBAL_X */ /* Max number of simultaneous pipes */ +static int MAX_FD = 2048; /* GLOBAL_X */ /* Max number of simultaneous pipes */ static void ChildrenFDInit()