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 },
|
||||
],
|
||||
];
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue