Michael Gruber
Results
2
comments of
Michael Gruber
Having this issue with `local invoke` and Go **Handler:** ```go package main import ( "context" "errors" "github.com/aws/aws-lambda-go/lambda" ) func HandleRequest(ctx context.Context, ev struct{}) (string, error) { return "", errors.New("FAIL") }...
As a sidenote, with the above example, running ```console $ echo '{}' | sam local invoke AWSSAMCLINonZero 2>err.log 1>out.log ``` Produces an empty `out.log` and the following `err.log` ``` 2019-04-23...