Can anyone comment or give suggestions for why only 50% of the Dispatched jobs being executed? I am running a Laravel Nova action where I have created a loop for testing by setting it to dispatch approximately 15 jobs - the job class which you can see in the code below:
https://gist.github.com/HeadStudios/cc5cf9518b2fc6fa96aef22c3013c7a6
My queue:listen command only shows 5 jobs executed and completed (as per attachment)
And also note that there are no jobs with errors nor any errors being shown in laravel.log
However checking the dumps as per below:
https://gist.github.com/HeadStudios/e89b52131d4e256e3868cccf274dbd3f (disregard final dump as it relates to a kernel task being executed outside of dev1)
You'll notice on dumps searching for the keyword 'Dispatching the following contact:' returns 16 results (as per attachment) - showing me that the jobs were dispatched - however there is no trace of them - and they fundamentally are "Ghost" jobs - I am confused as to why this is and any input on my issue and the cause of my "Ghost" jobs would be much appreciated.
Thank you!