Hello, i created workflow and use foreach for run backup task (multiple clients). how i can wait job complete for multiple parallel jobs?
i tried use WaitForJobCompletion in step after starting backup task. If configure "number OfParallelExecutions" value in "1" for foreach, task is executed sequentially (it's normal, we are waiting for the task to complete to start another task).
When configure "number OfParallelExecutions" value in (for example) "10" for foreach and use WaitForJobCompletion in step after starting backup task, the tasks are executed in parallel, but we have error "Error Code: :19:1805]" in workflow. But, workflow work correctly and backup done.
finnaly, is there a way to monitor (for jobs waiting for other steps on the workflow) the execution of multiple parallel (backup) jobs runs inside a "foreach" block outside of "foraech" block? When uses "number OfParallelExecutions" value in (for example) "10" for "foreach" block.
Thanks