From b7e4889e144d27f3227bc1d4d6f7670c349c4a3e Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 2 Apr 2025 15:07:37 +0300 Subject: Increase the open files limit --- scripts/guix-qa-frontpage.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/guix-qa-frontpage.in b/scripts/guix-qa-frontpage.in index 114125f..45ed3a4 100644 --- a/scripts/guix-qa-frontpage.in +++ b/scripts/guix-qa-frontpage.in @@ -286,6 +286,13 @@ (setrlimit 'core #f #f)) #:unwind? #t) + (with-exception-handler + (lambda (exn) + (simple-format #t "failed increasing open file limit: ~A\n" exn)) + (lambda () + (setrlimit 'nofile 4096 4096)) + #:unwind? #t) + (let ((core-file (string-append (getcwd) "/core")) (metric -- cgit v1.2.3