Hi Michael,
no, did not found any solution. The task is "I want to send a notification only when the task fails 2 times in a row"...
Best regards
Mario
Hi, Mario! If you want send a notification after job fails 2 times, you can:
1. Create user variable "error_count" with default value 0
2. Create job "Increment error count" with task "Calculate variable" which will be Increment error_count+1 (every job fails)
3. Create job "Restore error count" with task "Set user variable" which will be set error_count variable to 0
4. Create notification
5. Create general job which will be run.
5.1. Add flow to job, when job completed successfully - run "Restore..." job
5.2. Add flow to job, when job completed with error - run "Increment..." job
5.3. Add flow to job, when job completed with error - check "error_count" variable, if it is equal to 2 then run notification.