theam / aws-lambda-haskell-runtime

⚡Haskell runtime for AWS Lambda
https://theam.github.io/aws-lambda-haskell-runtime/
Other
269 stars 48 forks source link

HandlerNotFound should be published as Runtime.HandlerNotFound #113

Open stevemao opened 2 years ago

stevemao commented 2 years ago

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'."
}