I had the same problem
I fixed it by increasing the ‘retry_after’ parameter
make sure the retry_after value is greater than the time it takes a job to run
in config/queue.php file
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'retry_after' => 9000,
],