Artur Tomusiak

Results 7 issues of Artur Tomusiak

Based on non-offline functionality and [docu](https://www.serverless.com/framework/docs/providers/aws/events/sqs), it is possible to set `maximumBatchingWindow`. This sends `MaximumBatchingWindowInSeconds` attribute to [SQS](https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html) `ReceiveMessage` action. Offline that would be simulated using `WaitTimeSeconds` attribute in `receiveMessage`...

When `autoCreate` is set to `true`, implicit queues get created fine. The request body for queue creation looks like this: ``` { Action: 'CreateQueue', QueueName: 'AutocreatedImplicitQueue', Version: '2012-11-05' } ```...

We are using `serverless-plugin-typescript` plugin and we have a Lambda function running once a minute. Each time the function executes, it looks like serverless.yml file is being parsed (since I...

We have a Lambda function running on a schedule every minute. Putting my computer to sleep and waking it up after a few hours results with the Lambda function being...

In 2.4 I was able to pass a pagination cursor to client, which would get serialized to JSON format using `result[:after]` and then I had to use a bit more...