httpd: Fix clippy warning

Note: because we don't have a working copy here, we can't call
`Merged::cleanup`. We need to figure something out for this.
This commit is contained in:
cloudhead 2023-09-01 15:16:43 +02:00
parent bfc3c7164f
commit 0123433f81
No known key found for this signature in database
1 changed files with 2 additions and 1 deletions

View File

@ -711,7 +711,8 @@ async fn patch_update_handler(
patch.review(revision, verdict, summary, labels, &signer)?;
}
patch::Action::Merge { revision, commit } => {
patch.merge(revision, commit, &signer)?;
// TODO: We should cleanup the stored copy at least.
let _ = patch.merge(revision, commit, &signer)?;
}
patch::Action::RevisionComment {
revision,