From 7d1f02750c3e1f6ce44b4fdcd6cb2de787031a0c Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 10 Sep 2018 02:51:41 +0200 Subject: [PATCH] [fix] try to fix bug in prod where sometime the line is too long in stdout --- run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.py b/run.py index e8d76c8..26c81d4 100644 --- a/run.py +++ b/run.py @@ -283,6 +283,8 @@ async def run_job(worker, job): task_logger.info(f"Launch command: /bin/bash " + path_to_analyseCI + arguments) 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, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE)