Skip to content

Commit 5fd4375

Browse files
lym953claude
andcommitted
fix: use clone_from for durable_execution_status assignment
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 53a9b6b commit 5fd4375

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bottlecap/src/logs/lambda/processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ impl LambdaProcessor {
663663
log.message.lambda.first_invocation = ctx.first_invocation;
664664
}
665665
if log.message.message.starts_with("END RequestId:") {
666-
log.message.lambda.durable_execution_status = ctx.execution_status.clone();
666+
log.message.lambda.durable_execution_status.clone_from(&ctx.execution_status);
667667
}
668668
if let Ok(s) = serde_json::to_string(&log) {
669669
// explicitly drop log so we don't accidentally re-use it and push

0 commit comments

Comments
 (0)