Home > Software engineering >  Queue running infinitely but doen't have access to server [Laravel 6.X]
Queue running infinitely but doen't have access to server [Laravel 6.X]

Time:12-29

I have an issue with jobs in Laravel 6.X My jobs queues are in QUEUE_CONNECTION=database. Problem : I have a running job and it doesn't stop/fail. So i'm here to ask you if I can stop him without access to server (so I can't use CLI). I have access to database.

Thank you!

CodePudding user response:

you can try delete the job record from jobs table if you can't use the CLI.

CodePudding user response:

you can try Laravel Horizon https://laravel.com/docs/8.x/horizon good tool to manage laravel jobs

  • Related