Skip to content

Commit

Permalink
Merge pull request #25 from Exabyte-io/fix/SOF-6389-2
Browse files Browse the repository at this point in the history
SOF-6389-2: fix convergence broken due to changed subworkflow addUnit method sinature
  • Loading branch information
timurbazhirov committed Dec 6, 2022
2 parents 0bc1ba9 + 67c701c commit ae02b5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/subworkflows/convergence.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ export const ConvergenceMixin = (superclass) =>
next: storePrevResult.flowchartId,
});

this.addUnit(prevResultInit, true);
this.addUnit(paramInit, true);
this.addUnit(prevResultInit, 0);
this.addUnit(paramInit, 0);
this.addUnit(storeResult);
this.addUnit(conditionUnit);
this.addUnit(storePrevResult);
Expand Down

0 comments on commit ae02b5b

Please sign in to comment.