We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579bac4 commit af2f8caCopy full SHA for af2f8ca
1 file changed
SpiffWorkflow/bpmn/specs/mixins/inclusive_gateway.py
@@ -126,4 +126,6 @@ def _run_hook(self, my_task):
126
if len(matches + defaults) == 0:
127
raise WorkflowTaskException('No conditions satisfied on gateway', task=my_task)
128
my_task._sync_children(matches or defaults, TaskState.FUTURE)
129
+ for child in my_task.children:
130
+ child.task_spec._predict(child, mask=TaskState.FUTURE|TaskState.PREDICTED_MASK)
131
return True
0 commit comments