Maryadi Poipo
Maryadi Poipo

Reputation: 1478

Sending Laravel Queue Message Using SQS Amazon

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 : enter image description here

The problem is, the message is never got executed. So how to process this message on SQS...?? Thanks a lot

Upvotes: 1

Views: 2426

Answers (1)

kopaty4
kopaty4

Reputation: 2296

I think you forgot to run the queue daemon. Try to run php artisan queue:listen in the project folder.

Upvotes: 2

Related Questions