serverless-snippets icon indicating copy to clipboard operation
serverless-snippets copied to clipboard

Missing runtime for snippet Amazon SQS partial batch response Lambda function

Open mkovel opened this issue 2 years ago • 1 comments

Wrong response format:

    return {
        statusCode: 200,
        body: JSON.stringify({ batchItemFailures }),
    };

with proxy response format not working. It knowledge cost me a day. ((

    return { 
        batchItemFailures
    };

mkovel avatar Dec 22 '23 17:12 mkovel

Should be fixed now that #156 is merged

matthewskahn avatar Apr 17 '24 19:04 matthewskahn