From 7ce0982ca5bdb94f5fc955ff1612ae82ced4f2d6 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 24 Sep 2018 18:54:39 +0200 Subject: [PATCH] [mod] raise limit a LOT --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 705a0fb..19c602a 100644 --- a/run.py +++ b/run.py @@ -315,7 +315,7 @@ async def run_job(worker, job): command = await asyncio.create_subprocess_shell("/bin/bash " + path_to_analyseCI + arguments, cwd=cwd, # default limit is not enough in some situations - limit=(2 ** 16) * 10, + limit=(2 ** 16) ** 10, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE)