Add a comment about the ClearDocuments operation in the DeleteDocuments

This commit is contained in:
Clément Renault
2020-10-28 11:17:36 +01:00
parent 98fc24cbdf
commit 1228c2948d
3 changed files with 8 additions and 3 deletions

View File

@ -264,9 +264,7 @@ pub fn run(opt: Opt) -> anyhow::Result<()> {
let meta = match result {
Ok(()) => format!("valid update content"),
Err(e) => {
format!("error while processing update content: {}", e)
}
Err(e) => format!("error while processing update content: {:?}", e),
};
let processed = UpdateStatus::Processed { update_id, meta: meta.clone() };