Ludovic Courtès <ludo@HIDDEN>
to control <at> debbugs.gnu.org
.
Full text available.Received: (at 67041) by debbugs.gnu.org; 16 Nov 2023 22:26:59 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Nov 16 17:26:58 2023 Received: from localhost ([127.0.0.1]:44765 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1r3kp8-0000SH-Ig for submit <at> debbugs.gnu.org; Thu, 16 Nov 2023 17:26:58 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33160) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1r3kp6-0000S3-VL for 67041 <at> debbugs.gnu.org; Thu, 16 Nov 2023 17:26:57 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1r3kp1-0003u4-Qs; Thu, 16 Nov 2023 17:26:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=XnV/cTVDMGrRsa4g+1DDCNs5ACVfDPp6nuyoqHtbPuA=; b=AF96o7br3H43zdlGNozE YoJN2EnO8SdO3CiGUn+00626FtBDDhs5C1V55hoR5y9vaGWRpDRE/gPFpqi9Q4li5seMfVnKwgOCa +Y7uhVx6mEyfuXaXTK/I/D1M8Hw3StHhye7DwQvpKu6Fr1MBxulJzcqGbF9eGjMKy9m9Bnz4wccA4 q87CBxYrtFbVuCq9wR/xUIcB3q39IT2b+47d9V5hnk0h2z+CE6mCL469lO17OmYr/pAUca7Xcx2DE H7FceRjzAmSlkDUsYshcYSwGtCghYPxszVKkU3iTg7zATu/gJWCLvWpwcgO5KNvRtQmYuVCheF2R+ 6CcdRaZfHiRmaw==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= <ludo@HIDDEN> To: Maxim Cournoyer <maxim.cournoyer@HIDDEN> Subject: Re: bug#67041: [cuirass] cuirass-web crash In-Reply-To: <874jhlu1bm.fsf@HIDDEN> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Thu, 16 Nov 2023 17:09:49 +0100") References: <87ttptemk7.fsf@HIDDEN> <874jhlu1bm.fsf@HIDDEN> Date: Thu, 16 Nov 2023 23:26:48 +0100 Message-ID: <87v8a1s5av.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 67041 Cc: 67041 <at> debbugs.gnu.org, guix-sysadmin <guix-sysadmin@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Ludovic Court=C3=A8s <ludo@HIDDEN> skribis: > scheme@(guile-user)> (run-fibers > (lambda () > (define pool (make-resource-pool (iota 10))) > (with-resource-from-pool pool x (pk 'x x) (throw 'doh!)))) > > ;;; (x 0) > Uncaught exception in task: > In fibers.scm: > 186:20 9 (_) > 145:21 8 (_) > In ice-9/boot-9.scm: > 1752:10 7 (with-exception-handler _ _ #:unwind? _ #:unwind-for-type _) > In cuirass/utils.scm: > 99:24 6 (_) > In current input: > 6:44 5 (_ _) > In ice-9/boot-9.scm: > 1685:16 4 (raise-exception _ #:continuable? _) > In cuirass/utils.scm: > 96:12 3 (_ #<&compound-exception components: (#<&error> #<&irritants= irritants: ()> #<&exception-with-kind-and-args kind: doh! args: ()>)>) > In fibers/operations.scm: > 154:10 2 (perform-operation _) > In fibers/scheduler.scm: > 357:6 1 (suspend-current-task _) > In ice-9/boot-9.scm: > 1685:16 0 (raise-exception _ #:continuable? _) > ice-9/boot-9.scm:1685:16: In procedure raise-exception: > Attempt to suspend fiber within continuation barrier This is fixed by Cuirass commit 7c697ad7f15c13264615d2b6c9165b21abaf61dd. Ludo=E2=80=99.
bug-guix@HIDDEN
:bug#67041
; Package guix
.
Full text available.Received: (at 67041) by debbugs.gnu.org; 16 Nov 2023 16:10:09 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Nov 16 11:10:09 2023 Received: from localhost ([127.0.0.1]:57466 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1r3ewS-0000Ps-S0 for submit <at> debbugs.gnu.org; Thu, 16 Nov 2023 11:10:09 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:50180) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1r3ewP-0000PG-BQ for 67041 <at> debbugs.gnu.org; Thu, 16 Nov 2023 11:10:08 -0500 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1r3ewK-0001Zm-4N; Thu, 16 Nov 2023 11:10:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=Hoa/HpRjYMa3oSgGGU5CZ42j0NfyZn+fMdX3mCypXxg=; b=Q8SpkduXa4WCdKU/z6dw kc3BdSm1X02HFNYCmWTw6haCJy0la8epXYQKidSfCyg6nsnEAtUmHJwKYeeP4QNFBCrcooE9JOFM3 Z2bmsZ8wFjPA+cuF6zUcy5KdTNwnZyJRG5MSphi72WC97JC16jvZhmR3lqDvUz4O6y+KU1h7dXSG6 tAWndhwktxSL/EVAtN2h2fyAA3l5p42LjXErFUGxOuByNEwldgbSXR6Jlomfb7QMCpeybjuZkzODq eSz/VAvdnu3/0uwCzh398umhHNEcac3Zv7RMCclB9vIQe9Umh5Qpkh6pLf9de8SXtxSGotrCN6n8v nmRlGe0Wx23qpQ==; From: =?utf-8?Q?Ludovic_Court=C3=A8s?= <ludo@HIDDEN> To: Maxim Cournoyer <maxim.cournoyer@HIDDEN> Subject: Re: bug#67041: [cuirass] cuirass-web crash In-Reply-To: <87ttptemk7.fsf@HIDDEN> (Maxim Cournoyer's message of "Fri, 10 Nov 2023 08:59:36 -0500") References: <87ttptemk7.fsf@HIDDEN> Date: Thu, 16 Nov 2023 17:09:49 +0100 Message-ID: <874jhlu1bm.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 67041 Cc: 67041 <at> debbugs.gnu.org, guix-sysadmin <guix-sysadmin@HIDDEN> X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Hi, Maxim Cournoyer <maxim.cournoyer@HIDDEN> skribis: > 2023-11-10 13:11:30 ice-9/boot-9.scm:1685:16: In procedure raise-exceptio= n: > 2023-11-10 13:11:30 In procedure accept: Too many open files Apparently there=E2=80=99s something that causes =E2=80=98cuirass web=E2=80= =99 to leak file descriptors, the number being otherwise stable around 50: --8<---------------cut here---------------start------------->8--- 2023-11-08 06:53:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 07:03:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 07:13:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 07:23:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 07:33:23 heap: 54.97 MiB; threads: 9; file descriptors: 50 2023-11-08 07:43:23 heap: 54.97 MiB; threads: 9; file descriptors: 50 2023-11-08 07:53:23 heap: 54.97 MiB; threads: 9; file descriptors: 50 2023-11-08 08:03:23 heap: 54.97 MiB; threads: 9; file descriptors: 50 2023-11-08 08:13:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 08:23:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 08:33:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 08:43:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 08:53:23 heap: 61.34 MiB; threads: 9; file descriptors: 50 2023-11-08 09:03:23 heap: 61.34 MiB; threads: 9; file descriptors: 51 2023-11-08 09:13:23 heap: 61.34 MiB; threads: 9; file descriptors: 154 2023-11-08 09:23:23 heap: 61.34 MiB; threads: 9; file descriptors: 232 2023-11-08 09:33:23 heap: 61.34 MiB; threads: 9; file descriptors: 282 2023-11-08 09:43:23 heap: 61.34 MiB; threads: 9; file descriptors: 385 2023-11-08 09:53:23 heap: 61.34 MiB; threads: 9; file descriptors: 489 2023-11-08 10:03:23 heap: 61.34 MiB; threads: 9; file descriptors: 608 2023-11-08 10:13:23 heap: 61.34 MiB; threads: 9; file descriptors: 665 2023-11-08 10:23:23 heap: 61.34 MiB; threads: 9; file descriptors: 706 2023-11-08 10:33:23 heap: 61.34 MiB; threads: 9; file descriptors: 760 2023-11-08 10:43:23 heap: 61.34 MiB; threads: 9; file descriptors: 802 2023-11-08 10:53:23 heap: 61.34 MiB; threads: 9; file descriptors: 865 2023-11-08 11:03:23 heap: 61.34 MiB; threads: 9; file descriptors: 969 2023-11-08 11:13:24 heap: 61.34 MiB; threads: 9; file descriptors: 0 2023-11-08 11:23:24 heap: 61.34 MiB; threads: 9; file descriptors: 0 --8<---------------cut here---------------end--------------->8--- Looking at the logs, the FD leak may come from this: --8<---------------cut here---------------start------------->8--- 2023-11-08 09:03:35 GET /eval/903503 2023-11-08 09:03:35 In cuirass/http.scm: 2023-11-08 09:03:35 1074:25 11 (url-handler _ _ _) 2023-11-08 09:03:35 295:4 10 (evaluation-html-page #<<evaluation-summar= y> id: 90350?> ?) 2023-11-08 09:03:35 In cuirass/logging.scm: 2023-11-08 09:03:35 111:18 9 (call-with-time-logging "builds request fo= r evaluation?" ?) 2023-11-08 09:03:35 In ice-9/boot-9.scm: 2023-11-08 09:03:35 1752:10 8 (with-exception-handler _ _ #:unwind? _ # = _) 2023-11-08 09:03:35 In cuirass/utils.scm: 2023-11-08 09:03:35 99:24 7 (_) 2023-11-08 09:03:35 In cuirass/database.scm: 2023-11-08 09:03:35 1503:2 6 (_ _) 2023-11-08 09:03:35 1439:28 5 (proc _) 2023-11-08 09:03:35 In ice-9/boot-9.scm: 2023-11-08 09:03:35 1685:16 4 (raise-exception _ #:continuable? _) 2023-11-08 09:03:35 In cuirass/utils.scm: 2023-11-08 09:03:35 96:12 3 (_ #<&compound-exception components: (#<&e= rror> #<&orig?>) 2023-11-08 09:03:35 In fibers/operations.scm: 2023-11-08 09:03:35 154:10 2 (perform-operation _) 2023-11-08 09:03:35 In fibers/scheduler.scm: 2023-11-08 09:03:35 357:6 1 (suspend-current-task _) 2023-11-08 09:03:35 In ice-9/boot-9.scm: 2023-11-08 09:03:35 1685:16 0 (raise-exception _ #:continuable? _) 2023-11-08 09:03:35 Attempt to suspend fiber within continuation barrier --8<---------------cut here---------------end--------------->8--- Fortunately, this is easy to reproduce: --8<---------------cut here---------------start------------->8--- $ ./pre-inst-env guile GNU Guile 3.0.9 Copyright (C) 1995-2023 Free Software Foundation, Inc. Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it under certain conditions; type `,show c' for details. Enter `,help' for help. scheme@(guile-user)> ,use(fibers) scheme@(guile-user)> ,use(cuirass utils) scheme@(guile-user)> (run-fibers (lambda () (define pool (make-resource-pool (iota 10))) (with-resource-from-pool pool x (pk 'x x) (throw 'doh!)))) ;;; (x 0) Uncaught exception in task: In fibers.scm: 186:20 9 (_) 145:21 8 (_) In ice-9/boot-9.scm: 1752:10 7 (with-exception-handler _ _ #:unwind? _ #:unwind-for-type _) In cuirass/utils.scm: 99:24 6 (_) In current input: 6:44 5 (_ _) In ice-9/boot-9.scm: 1685:16 4 (raise-exception _ #:continuable? _) In cuirass/utils.scm: 96:12 3 (_ #<&compound-exception components: (#<&error> #<&irritants i= rritants: ()> #<&exception-with-kind-and-args kind: doh! args: ()>)>) In fibers/operations.scm: 154:10 2 (perform-operation _) In fibers/scheduler.scm: 357:6 1 (suspend-current-task _) In ice-9/boot-9.scm: 1685:16 0 (raise-exception _ #:continuable? _) ice-9/boot-9.scm:1685:16: In procedure raise-exception: Attempt to suspend fiber within continuation barrier --8<---------------cut here---------------end--------------->8--- To be continued=E2=80=A6 Ludo=E2=80=99.
bug-guix@HIDDEN
:bug#67041
; Package guix
.
Full text available.Received: (at submit) by debbugs.gnu.org; 10 Nov 2023 14:00:30 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Nov 10 09:00:30 2023 Received: from localhost ([127.0.0.1]:49708 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1r1S3i-0004cb-HY for submit <at> debbugs.gnu.org; Fri, 10 Nov 2023 09:00:30 -0500 Received: from lists.gnu.org ([2001:470:142::17]:57542) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <maxim.cournoyer@HIDDEN>) id 1r1S3g-0004cK-Du for submit <at> debbugs.gnu.org; Fri, 10 Nov 2023 09:00:29 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <maxim.cournoyer@HIDDEN>) id 1r1S2w-0006AV-CF for bug-guix@HIDDEN; Fri, 10 Nov 2023 08:59:42 -0500 Received: from mail-yw1-x1136.google.com ([2607:f8b0:4864:20::1136]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from <maxim.cournoyer@HIDDEN>) id 1r1S2u-0004RH-QE for bug-guix@HIDDEN; Fri, 10 Nov 2023 08:59:42 -0500 Received: by mail-yw1-x1136.google.com with SMTP id 00721157ae682-5afbdbf3a19so24279887b3.2 for <bug-guix@HIDDEN>; Fri, 10 Nov 2023 05:59:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1699624778; x=1700229578; darn=gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=1IHHay6RaPSOHKcnC+QTZK486M1ftRdWRJtzuToN7t0=; b=cvrTRnEX4J6nIu9r0QpD3on5vPXAPMqffaG7Rg5e1CxkRncBc/lY9mJiHfFA/a/T84 4TUJeJuHG6mXEijTzU0gZeJY0UnSN3V1I+gt8BA3XKrVOuL/pbaPe19Hzw+PC2VmScTF AE/xIYYKPC4mry1V/XRu2dYLIDYpOPQcz64goeJVSFo/yrSH8KWwlGpErOKhzBql7zR7 wkDb187hLtEB4GIYbxt+lEEoSagt8aYN9Y8xgpFrmNOP4rltNDQ/wHn+kHJDIBzRdcwK UNut9fsV5VClrS6fFWjkm+SMtkL5NrDAwju/eLQcf18yFEQ/SDOdrh0UPgw6r6FXwgpq MYfQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1699624778; x=1700229578; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=1IHHay6RaPSOHKcnC+QTZK486M1ftRdWRJtzuToN7t0=; b=TMkXyu/gev4C6w8eEK7/2l+Q2gSouF+WHcK4Z27k3Ow9wwny2C5CIGiQ+1irv3b53h 7ayR+21HBQvokj/ifK6quXSI3LIgjm/nqTlGXr1hlLdZXi/XOyCVjuMN7ptCcPBUtjs4 W/Y96fkZGFIaiqllqwUsCx7mbJhqQWEj7aciaO1Up3NmEJqCu48ggyQf0PWIYcLFnMob bcMqYpm5vN8DbjD3RMAeMJY4G7iQgf0SC7b8HdKn6lICqZWJniMj1EGOkq4S5SV76/7l Okz1o1dXGnXQkqFJGOTwtaqlBjyqADaTa9w4TSKslmHM0q6hy64HaEkpgEg7A4/gZK/t K21Q== X-Gm-Message-State: AOJu0YzoN8HUZ3ttNeEAfJdhKTkRdJWME8mEnQJe/4EMjVFLh3V8stNN TwG9nPdcVzaDbGIHfmuPJz7JI4rSw2k= X-Google-Smtp-Source: AGHT+IEBpLl+8iLqgyUYaTqLOAt1K5mimOHcwuLopPhk2yfUdpX2LoGOUo+UMIgj89qs2cPfclMJ7g== X-Received: by 2002:a0d:ea0d:0:b0:5a8:dd5f:dbf with SMTP id t13-20020a0dea0d000000b005a8dd5f0dbfmr8585177ywe.34.1699624778542; Fri, 10 Nov 2023 05:59:38 -0800 (PST) Received: from hurd (dsl-10-148-207.b2b2c.ca. [72.10.148.207]) by smtp.gmail.com with ESMTPSA id mk23-20020a056214581700b0066d20f29e5fsm2936576qvb.35.2023.11.10.05.59.37 for <bug-guix@HIDDEN> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 10 Nov 2023 05:59:38 -0800 (PST) From: Maxim Cournoyer <maxim.cournoyer@HIDDEN> To: bug-guix <bug-guix@HIDDEN> Subject: [cuirass] cuirass-web crash X-Debbugs-CC: guix-sysadmin <guix-sysadmin@HIDDEN> Date: Fri, 10 Nov 2023 08:59:36 -0500 Message-ID: <87ttptemk7.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=2607:f8b0:4864:20::1136; envelope-from=maxim.cournoyer@HIDDEN; helo=mail-yw1-x1136.google.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.0 (/) Hi, Today ci.guix.gnu.org was showing a 504 Gateway Time-out error. Looking at /var/log/cuirass-web.log on berlin, there's this backtrace: --8<---------------cut here---------------start------------->8--- 2023-11-10 13:11:30 Uncaught exception in task: 2023-11-10 13:11:30 GET /build/18305/details 2023-11-10 13:11:30 In fibers.scm: 2023-11-10 13:11:30 172:8 4 (_) 2023-11-10 13:11:30 In web/server/fiberized.scm: 2023-11-10 13:11:30 187:12 3 (socket-loop #<input-output: socket 44> #<<channel> get?>) 2023-11-10 13:11:30 In ice-9/suspendable-ports.scm: 2023-11-10 13:11:30 733:12 2 (_ #<input-output: socket 44> _) 2023-11-10 13:11:30 In unknown file: 2023-11-10 13:11:30 1 (accept #<input-output: socket 44> 526336) 2023-11-10 13:11:30 In ice-9/boot-9.scm: 2023-11-10 13:11:30 1685:16 0 (raise-exception _ #:continuable? _) 2023-11-10 13:11:30 ice-9/boot-9.scm:1685:16: In procedure raise-exception: 2023-11-10 13:11:30 In procedure accept: Too many open files --8<---------------cut here---------------end--------------->8--- Restarting it with 'sudo herd restart cuirass-web' resolved that for now. -- Thanks, Maxim
Maxim Cournoyer <maxim.cournoyer@HIDDEN>
:guix-sysadmin@HIDDEN, bug-guix@HIDDEN
.
Full text available.guix-sysadmin@HIDDEN, bug-guix@HIDDEN
:bug#67041
; Package guix
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.