I have a task that should always have something in the Output (standard). When it does not have anything (i.e., the client shows the Output as "No output") I want to re-run that task, but I can't get a Flow to work that does this.
I have a Flow to run a notification on no output, and that works successfully:
On complete
If other value
{STRING(RowCount|{TASK(Active|StdOut)})}
Type = String
Condition = Equal (=)
Value/Variable = 0
Task flow control = Run Notification
But, if I change the flow control to Wait and retry task, it doesn't do anything. If I change it to Go to Task (and for this test only I create that second task), it runs that second task every single time whether the first task had output or not.
So, how can I get this to work?