Skip to content

Commit

Permalink
fix: convergence broken due to changed subworkflow addUnit method sig…
Browse files Browse the repository at this point in the history
…nature
  • Loading branch information
unsigned6 committed Dec 6, 2022
1 parent d648a61 commit 67c701c
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 67c701c

Please sign in to comment.