Fixed multipipelining

This commit is contained in:
Dunemask 2022-08-12 20:10:57 +00:00
parent 82a4865404
commit 1bb588f294
13 changed files with 66 additions and 27 deletions

View file

@ -26,7 +26,7 @@ const wrapCommand = (jobId, command) => {
JSON.stringify({ jobId, command, url: qualiteerUrl }),
"utf8"
).toString("base64");
const curlCmd = `curl -o qltr-executor ${executorUrl} && ${bin} ${payload}`;
const curlCmd = `curl -o qltr-executor ${executorUrl} || true && ${bin} ${payload}`;
return curlCmd;
};