From b787e8fee802c3fcb01228eae7866b2b7b0f3929 Mon Sep 17 00:00:00 2001 From: Jeremy Thurgood Date: Wed, 29 Mar 2023 09:56:23 +0200 Subject: [PATCH] Unlimit cpu and file handle rlimits as well --- vxsandbox/tests/test_worker.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vxsandbox/tests/test_worker.py b/vxsandbox/tests/test_worker.py index 52a8bc0..1a25703 100644 --- a/vxsandbox/tests/test_worker.py +++ b/vxsandbox/tests/test_worker.py @@ -392,6 +392,8 @@ class JsSandboxTestMixin(object): "RLIMIT_DATA": [-1, -1], "RLIMIT_STACK": [-1, -1], "RLIMIT_AS": [-1, -1], + "RLIMIT_CPU": [-1, -1], + "RLIMIT_NOFILE": [-1, -1], } @inlineCallbacks