Replies: 1 comment 2 replies
-
Anybody has some thoughts around this? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to bulid a workflow which has a parallel task, in the task there are two indepent task which should be run simultaneously.
But after playing around with this sample I found the Parallel of WorkflowCore still run tasks in Sequence.
like in above image, the output should not always be the same for each run because the worklfow runs in Parallel, right? But the output is always like below
the sequence is 1.1 -> 2.1 -> 3.1 -> 1.2 -> 2.2 -> 3.2 -> 2.3 always. The three branchs run in sequence to me.
So either I'm understanding parallel wrong or is there some configuration to make the branchs actually parallel ?
@danielgerlag could you maybe help to have a look and give me some suggestions? Thanks a lot.
Beta Was this translation helpful? Give feedback.
All reactions