-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[serverless-offline-sqs] Missing QueueName #200
Comments
Having similar issue. Also, not sure why queueName is required? Serverless gives me a warning about it, but serverless-offline-sqs seems to require it. If I remove, serverless is happy, but then the event does not trigger. |
Same here, I'm trying to use it with serverless-lift and I have the same error, not sure why it's using AWS sdk to create the queue |
Same issue here, even when using the serverless configuration example. |
Has there been any progress on this issue? |
Same here, using lift |
+1 using lift |
Hey all, I just wrote a guide for solving this issue (see above), hope it helps! |
For me, the issue was having two queues in the
I fixed it by just adding another |
Digging into the source code: Something like this got me past this error:
|
came here with the same issue and found a workaround, partly thanks to @WNC-Travis for pointing me to the source. His solution also doesn't work for us because |
I faced similar issue and I realized I put SQS_URL instead of SQS_ARN while defining one of the lambda functions. |
Hey folks,
On my side, still have this issue :
I'm using the SDK v3. The last version of serverless offline and offline-sqs.
the serverless-offline-sqs is loaded after serverless-offline.
here is my definition :
In the SQSEventDefinition file, when we receive the rawSqsEventDefinition , here is the result :
The type is object. So it falls to :
Which returns :
So it isn't able to extract correctly.
thanks
The text was updated successfully, but these errors were encountered: