Reputation: 1478
I'm using sqs queue in my laravel. Right now I have successsfully pushed my queue job to sqs server as shown in the picture below :
The problem is, the message is never got executed. So how to process this message on SQS...?? Thanks a lot
Upvotes: 1
Views: 2426
Reputation: 2296
I think you forgot to run the queue daemon.
Try to run php artisan queue:listen
in the project folder.
Upvotes: 2