You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A handler can gracefully force the process to be restarted by returning a messages.InvokeResponse_Error with ShouldExit = true. The usual way this happens is when the function panics, but pass-through is allowed too on the handler's error value
Is your feature request related to a problem? Please describe.
A handler can gracefully force the process to be restarted by returning a
messages.InvokeResponse_Error
withShouldExit = true
. The usual way this happens is when the functionpanic
s, but pass-through is allowed too on the handler's error valueaws-lambda-go/lambda/errors.go
Lines 20 to 22 in caace58
However, there's not an equivalent when the response value is a reader.
Describe the solution you'd like
Goal should be able to make this:
result in the same logging and error reporting as this:
Describe alternatives you've considered
Might also expose something like
aws-lambda-go/lambda/errors.go
Lines 35 to 46 in caace58
The text was updated successfully, but these errors were encountered: