Returning from a Callback Based AWS Lambda Handler
A Stack Overflow self-answer, where I discover that the callback based handlers module.exports = function(event, context, callback) { //.. callback(null, 'my response') } do not return immediately upon calling the callback. In fact, the callback has nothing to do with when these functions will return. When AWS Lambda runs your function [...]
astorm