aws-lambda-haskell-runtime icon indicating copy to clipboard operation
aws-lambda-haskell-runtime copied to clipboard

HandlerNotFound should be published as Runtime.HandlerNotFound

Open stevemao opened this issue 3 years ago • 0 comments

before

{
  "errorMessage": "RequestId: c2560dea-0377-4357-9a9d-56eb97387f97 Error: Runtime exited with error: exit status 1",
  "errorType": "Runtime.ExitError"
}

after

{
  "errorType": "Runtime.HandlerNotFound",
  "errorMessage": "Could not find handler 'handler2'."
}

stevemao avatar Mar 14 '22 15:03 stevemao