fix(node): ensure operations are executed sequentially in execute method
This commit is contained in:
parent
b5e8260129
commit
ade8ff8cee
@ -104,8 +104,9 @@ class NodeRecipe {
|
||||
if (prev && typeof prev.then === 'function') {
|
||||
return prev.then(runOp);
|
||||
}
|
||||
}
|
||||
return prev;
|
||||
|
||||
return runOp(prev);
|
||||
}, dish);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user