-
Notifications
You must be signed in to change notification settings - Fork 112
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
Using serverless-offline-sqs #101
Comments
Hi, just to be sure: do you load If that still doesn't solve your problem, I see that this PR might help: CoorpAcademy/serverless-plugins#6 It isn't documented but it seems to be: custom:
serverless-offline-sqs:
QueueName: abc |
I gave it a try using: constructs:
my-queue:
type: queue
worker:
handler: queue.handler
memorySize: 512
timeout: 10
custom:
serverless-offline:
useChildProcesses: true
serverless-offline-sqs:
autoCreate: true
apiVersion: '2012-11-05'
endpoint: http://0.0.0.0:9324
region: eu-west-1
accessKeyId: root
secretAccessKey: root
skipCacheInvalidation: false
plugins:
- serverless-lift
- serverless-offline
- serverless-offline-sqs the app now starts (serverless-offline-sqs doesn't create the queue in elasticMq though, even when using QueueName).
has anyone ever been able to get it to work? Update: nvm it seems that we have to wait for #93 anyway |
@alex88 did you find any work around for this? |
@gravi2 unfortunately not, ended up not using serverless and making a regular app |
any updates about this issue? |
Hello, any updates ?
Error is still "MissingRequiredParameter: Missing required key 'QueueName' in params" |
I'm currently on a project where I'm using the following plugins: serverless-offline, serverless-offline-sqs and serverless-lift. When I try to run 'serverless offline', for each environment declared in the worker this error is being raised:
offline: MissingRequiredParameter: Missing required key 'QueueName' in params at ParamValidator.fail.
Is there any configuration where I can fix this error?
The text was updated successfully, but these errors were encountered: