dsa1234569 2018-01-25 21:13
浏览 252

转到API网关后面的AWS Lambda:自定义错误消息

I'm trying to handle an error in a Lambda function written in Go.
The Lambda is triggered by API Gateway.
When I respond with a 200, I get the correct response.
But when I respond with a 500 code, I always receive {"message": "Internal server error"}

Here is part of the code:

func newErrReponse(message string) (events.APIGatewayProxyResponse, error) {
    return events.APIGatewayProxyResponse{
        Body:       message,
        StatusCode: 500,
    }, errors.New(message)
}

func handleRequest(ctx context.Context, request events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) {
    return newErrReponse("some error")
}

func main() {
    lambda.Start(handleRequest)
}

I was expecting "some error", but I always get the internal server error. I tried JSON in the body but that didn't help. The integration request is of type LAMBDA_PROXY. That was the default.

How can I control the error response?

  • 写回答

1条回答 默认 最新

  • dougu7546 2018-01-26 13:52
    关注

    The lambda handler can return 2 values. interface{} and error:
    https://godoc.org/github.com/aws/aws-lambda-go/lambda

    Because I use API Gateway, The interface is of type APIGatewayProxyResponse:
    https://godoc.org/github.com/aws/aws-lambda-go/events#APIGatewayProxyResponse

    If the Lambda succeeds, the API Gateway will return the values from APIGatewayProxyResponse.

    But if the Lambda don't succeeds, then you will get an internal server error.

    If you return an error other then nil, then the Lambda failed.

    When there is a panic() or os.Exit() then the Lambda also failed. This means a log.Fatal also fails a Lambda.

    Here is more information about errors:
    https://docs.aws.amazon.com/lambda/latest/dg/go-programming-model-errors.html

    Lambda logs a panic (and other output) in CloudWatch

    评论

报告相同问题?

悬赏问题

  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料