mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
[fix] try to fix bug in prod where sometime the line is too long in stdout
This commit is contained in:
parent
7b05b44c24
commit
7d1f02750c
1 changed files with 2 additions and 0 deletions
2
run.py
2
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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue