Hi all,
I have noticed that LazyCorn seems to run maybe once or twice and then just stops.
Has anybody else encountered this, I have the following within 2 different modules.
public function init(){
$this->addHookAfter('ProcessModule::executeEdit', $this, 'configurableButtons');
wire()->addHook('LazyCron::every15Minutes', $this, 'autoGenerate');
}
public function init(){
wire('forms')->addHookAfter('ProcessModule::executeEdit', $this, 'configurableButtons');
wire()->addHook('LazyCron::everyHour', $this, 'getExport');
}
Does having multiple LazyCrons setup cause any issues?