我是AWS和GoLang的新手,我试图通过AWS SAM cli执行Lambda函数。但是每次我尝试这样做时,都会出现以下错误:
I0517 07:51:11.052078 13 main.go:62] Thumbnail Lambda successfully started
I0517 07:51:13.696304 13 utils.go:99] Needed directories successfully created
2019-05-17 09:51:14 Function 'Thumbnail' timed out after 3 seconds
2019-05-17 09:51:14 Function returned an invalid response (must include one of: body, headers or statusCode in the response object). Response received:
我不想复制在HTTP请求中传递的信息,因为它很敏感。
有什么主意我可以修改这3秒的超时时间吗?
答案 0 :(得分:2)
我正在使用template.yml
来设置我的lambda。当我向其引入sam local start-api
属性时,我忘记了重新构建和重新运行Timeout
。诚实的错误,感谢您的宝贵时间。
答案 1 :(得分:0)
Lambda函数的默认超时为3秒。您可以通过更新SAM模板中的Timeout属性来设置任何值,例如
ExampleLambda:
Type: AWS::Serverless::Function
Properties:
CodeUri: .
Handler: index.handler
Runtime: nodejs10.x
Timeout: 10
答案 2 :(得分:0)