From 470fb02022e3b923519cd5786eac0ce16ec41f16 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Tue, 5 Jan 2021 17:22:25 +0100 Subject: [PATCH] Also provide the job id to analyseCI --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 9a0599c..0631a33 100644 --- a/run.py +++ b/run.py @@ -414,7 +414,7 @@ async def run_job(worker, job): task_logger.info(f"Starting job '{job.name}' #{job.id}...") cwd = os.path.split(path_to_analyseCI)[0] - arguments = f' {job.url_or_path} "{job.name}"' + arguments = f' {job.url_or_path} "{job.name}" {job.id}' task_logger.info(f"Launch command: /bin/bash " + path_to_analyseCI + arguments) try: command = await asyncio.create_subprocess_shell("/bin/bash " + path_to_analyseCI + arguments,