我编写了以下代码,以在计划的作业运行时将数据发送到AWS Lambda函数。问题是它会在失败时发送警报 在运行task()时。如何仅在成功运行时发送警报?
$schedule->command('task:send')
->hourly()->appendOutputTo(storage_path().'/logs/task.log')
->after(function(){
LambdaHelper::sendHeartbeatLambda("task");
});