In webstrom ide, using aws sam cli and lamdba functions, I added this line:
const dynamoose = require('dynamoose')
After that getting this error:
Function 'HelloWorldFunction' timed out after 3 seconds. No response from invoke container for HelloWorldFunction
Before that it was working perfectly fine. I have installed the dynamoose module as well.
Asked
Active
Viewed 508 times
1

Power123
- 23
- 1
- 5
-
2Did you increased your functions timeout: `Timeout – The amount of time that Lambda allows a function to run before stopping it. The default is three seconds. `? – Marcin Jun 26 '21 at 04:48
-
3Does this answer your question? [AWS Lambda function Timedout after 3 sec using AWS SAM](https://stackoverflow.com/questions/56182205/aws-lambda-function-timedout-after-3-sec-using-aws-sam) – peter Jun 26 '21 at 07:47
-
Yes, I have increased timeout. Still no change. – Power123 Jun 27 '21 at 00:48