GH-1187 Add log for AWS Context

This commit is contained in:
Oleg Zhurakousky
2024-10-24 14:23:08 +02:00
parent e7951881fa
commit 3968e370dd

View File

@@ -85,6 +85,9 @@ public class FunctionInvoker implements RequestStreamHandler {
if (!this.started) {
this.start();
}
if (context == null) {
logger.warn("Lambda is invoked with null Context");
}
Message requestMessage = AWSLambdaUtils
.generateMessage(input, this.function.getInputType(), this.function.isSupplier(), jsonMapper, context);