serverless-snippets
serverless-snippets copied to clipboard
Missing runtime for snippet Amazon SQS partial batch response Lambda function
Wrong response format:
return {
statusCode: 200,
body: JSON.stringify({ batchItemFailures }),
};
with proxy response format not working. It knowledge cost me a day. ((
return {
batchItemFailures
};
Should be fixed now that #156 is merged