Before ending the job, I want it to create another one for 5 minutes later (same process)

It sounds like the trigger is set to Kill instead of Stop, which is an improper way of doing this. Kill is like killing a process in Windows Task Manager - it just immediately kills it without any regard for anything else. You should set the trigger to Stop instead of Kill, and then use the Should Stop activity inside the automation so it detects when Orchestrator has told it to stop, moves to an “end process” sequence (with nothing after it) and therefore completes gracefully.

2 Likes