I have a job with 2 tasks
Task 1 does something
Task 2 checks the output log of Task 1 and notifies on success, error, missing, etc.
If Task 1 doesn't run at all, Task 2 will not run either and will not send a notification that Task 1 failed to run.
Is there a way for Task 2 to always run regardless of what happens with Task 1?
The particular error I had was that I accidentally enabled an incorrect Condition for Task 1 which prevented it from running. But that also prevented Task 2 from running and since "Condition not met" is not an error, I did not notice that Task 1 has not been running for a couple of days.
I can create a second Job for Task 2 alone, but I wanted to know if there is a way of doing this within one Job.
Thanks.