-
I'm attempting to push a job to the SQS queue using laravel, which is working fine locally, but when I deploy to AWS and run it there I get a
I'm guessing this a permissions problem? I'm not really sure where to go from here. I saw in another thread that someone was having a similar issue and fixed it by adding My serverless.yml (I'm using a manually created queue instead of having Lift create it for me, could that be the problem?):
config/queue.php
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Well I "solved" this by changing the queue setting in serverless.yml to |
Beta Was this translation helpful? Give feedback.
Well I "solved" this by changing the queue setting in serverless.yml to
SQS_QUEUE: ${construct:jobs.queueUrl}
Not really the approach I wanted, but it's working for now.