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:
parent
bfc3c7164f
commit
0123433f81
|
|
@ -711,7 +711,8 @@ async fn patch_update_handler(
|
||||||
patch.review(revision, verdict, summary, labels, &signer)?;
|
patch.review(revision, verdict, summary, labels, &signer)?;
|
||||||
}
|
}
|
||||||
patch::Action::Merge { revision, commit } => {
|
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 {
|
patch::Action::RevisionComment {
|
||||||
revision,
|
revision,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue