We have 2 jobs which look like this
Job A
- Task 1
- Task 2 -> call Job B
- Task 3
Job B
What we would like to do is for Job A to wait for Job B to finish before carrying on with Task 3
Is there any way to achieve this without using things like global variables?
Thanks