|
The documentation below show that you can add dynamic tasks inside the workflow itself. If I have workflow A and there are 2 concurrent workflow executions does modifying the workflow tasks from one of the executions affect the other execution? Or is it contained to that specific execution? Documentation: https://riverqueue.com/docs/pro/workflows#adding-tasks-to-an-existing-workflow |
Answered by
bgentry
Sep 16, 2024
Replies: 1 comment 2 replies
|
Each workflow instance is totally independent. There's not actually anything linking them together other than the workflow ID, which means that a single workflow will contain only the jobs that you inserted as part of it, or which you added to it later during its execution. I'll see if I can work something about this into the docs, thank you for the question! |
2 replies
Answer selected by
bgentry
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Each workflow instance is totally independent. There's not actually anything linking them together other than the workflow ID, which means that a single workflow will contain only the jobs that you inserted as part of it, or which you added to it later during its execution.
I'll see if I can work something about this into the docs, thank you for the question!