Fixed multipipelining
This commit is contained in:
parent
82a4865404
commit
1bb588f294
13 changed files with 66 additions and 27 deletions
|
@ -133,9 +133,21 @@ const testsMock = () => {
|
|||
|
||||
const mappingsMock = () => {
|
||||
return [
|
||||
["primary", "secondary1", "tertiary1"],
|
||||
["primary", "secondary1", "tertiary2"],
|
||||
["primary", "secondary2", "tertiary3"],
|
||||
[
|
||||
{ name: "primary", delay: 0 },
|
||||
{ name: "secondary1", delay: 1000 },
|
||||
{ name: "tertiary1", delay: 0 },
|
||||
],
|
||||
[
|
||||
{ name: "primary", delay: 0 },
|
||||
{ name: "secondary1", delay: 1000 },
|
||||
{ name: "tertiary2", delay: 8000 },
|
||||
],
|
||||
[
|
||||
{ name: "primary", delay: 0 },
|
||||
{ name: "secondary2", delay: 0 },
|
||||
{ name: "tertiary3", delay: 3000 },
|
||||
],
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue