I’ve installed Supervisor on aaPanel to manage Laravel queue workers. My Laravel project handles competition events that have registration and round start/end date-times. For each scheduled time, I’m creating a queued job with a delay matching the corresponding event time.
I’ve also set up Laravel Telescope to monitor my queues. In Telescope, I can see all the queued jobs — they appear as “successfully executed.”
However, I’m facing an issue:
Sometimes the queue jobs are actually executed by Supervisor as expected.
Other times, the jobs don’t execute at all, even though Telescope shows them as successfully processed.
It seems inconsistent — some jobs run, while others are skipped, even though they’re all visible and marked as completed in Telescope.
Could someone please help me understand what might be causing this? Is there a configuration issue with Supervisor on aaPanel or something I should check in Laravel’s queue setup?
Thanks in advance for your help!