Hello @alex_907,
here is what I think.
I think the flows are working correctly, as expected. The problem is on the design of the flows, meaning:
- If you have a flow and one node will wait for a time event, that happens once per months.... your flow won,t ever finish, but once per month.
Instead:
That node (and nodes after it), should be scheduled apart in another flow or sub-flow. What you can do, if it requires an extra dependency besides the time, is to add in that new event, like a file event before it. Then the job will start only when the time event AND/OR the file event will happen.
With this procedure, you can ensure all flows will finish, and if any must wait to be started for more than one condition to happen, that is OK.
Once this is said, you cannot change the flow from Running or Wait to Done. But to Stopped, or Error exit codes. or Pause. But never "Done" (that is also bad "cheating" anyway 😉 )