Scheduler - Recurring Tasks

Hi,

I was wondering if it is possible to specificy recurring runs of a task via the manager. It seems that I can only set up a one-time run, or am I missing something, maybe?

Best regards,
Nico

Correct, Scheduler is meant for one-time runs so it doesn’t have recurring tasks out of the box.

But there’s a really easy workaround: start your task code with $task->schedule('+10 minutes') and it’ll repeat itself every 10 minutes :wink:

perfect solution, thanks Mark!