We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd4375 commit c1c0494Copy full SHA for c1c0494
1 file changed
bottlecap/src/logs/lambda/processor.rs
@@ -663,7 +663,10 @@ impl LambdaProcessor {
663
log.message.lambda.first_invocation = ctx.first_invocation;
664
}
665
if log.message.message.starts_with("END RequestId:") {
666
- log.message.lambda.durable_execution_status.clone_from(&ctx.execution_status);
+ log.message
667
+ .lambda
668
+ .durable_execution_status
669
+ .clone_from(&ctx.execution_status);
670
671
if let Ok(s) = serde_json::to_string(&log) {
672
// explicitly drop log so we don't accidentally re-use it and push
0 commit comments