Closed shijie1991 closed 3 years ago
Could you please elaborate what the issue is?
Laravel 8.51.0 totem v8.1.4
I use Alibaba Cloud as file storage
$event->cron($task->getCronExpression()) ->name($task->description) ->timezone($task->timezone) ->before(function () use ($task, $event) { $event->start = microtime(true); Executing::dispatch($task); }) ->after(function () use ($event, $task) { Executed::dispatch($task, $event->start ?? microtime(true)); }) ->sendOutputTo(Storage::path($task->getMutexName()));
Unsuccessful here makes it impossible to execute
sendOutputTo(Storage::path($task->getMutexName()))
Laravel 8.51.0 totem v8.1.4