So i have a workflow that i’m testing and ive run it both normally and step by step to confirm all actions. I haven’t changed anything in the workflow, yet it seems to give a different result when i run it slowly.
Anyone experienced this?
So i have a workflow that i’m testing and ive run it both normally and step by step to confirm all actions. I haven’t changed anything in the workflow, yet it seems to give a different result when i run it slowly.
Anyone experienced this?
This is because workflows are run asynchronously - basically they don’t just go in the steps you’ve got them in the workflow, they fire all at once (in general). So sometimes if you create a new thing and then need some of that data to modify another thing it won’t work unless you force the steps to happen in the right order as there isn’t anything created at the same time the modify workflow fires.
Some ways to force it to happen in the order you would like if steps are dependent on each other:
Thank you for clarifying