我的Laravel队列有时起作用,有时却失败。在大多数情况下,它会失败,并且没有例外。
参见下文:
QUEUE_DRIVER是Redis。
实际工作职能:
class SendVertexSMSMessage implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
public function __construct()
{
}
public function handle()
{
\Log::info('Sent');
}
public function failed(\Exception $exception)
{
\Log::info('Failed.');
}
}
日志也不显示任何内容。
怎么了?