Hey Guys,
I’ve successfully integrated Sentry.io with my Express app on my local and I got it to report any issue. Also, I’ve created an endpoint which calls an undefined function just for the sake of testing.
However, when I deployed my App on AWS Lambda, using aws-serverless-express
module my App stopped working except the testing endpoint, any other endpoint doesn’t send any response.
Here is my aws/express wrapper
const server = awsServerlessExpress.createServer(app)
exports.handler = (event, context) => {
context.callbackWaitsForEmptyEventLoop = false;
awsServerlessExpress.proxy(server, event, context)
}
Am I missing anything here?
Thanks in advncce,