mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-04 20:18:55 +01:00
feat(http): task view indexed and deleted documents return 0 instead of null
This commit is contained in:
parent
0d2a358cc2
commit
f558ff826a
@ -215,6 +215,27 @@ impl From<Task> for TaskView {
|
|||||||
(TaskStatus::Succeeded, None, Some(*timestamp))
|
(TaskStatus::Succeeded, None, Some(*timestamp))
|
||||||
}
|
}
|
||||||
TaskEvent::Failed { timestamp, error } => {
|
TaskEvent::Failed { timestamp, error } => {
|
||||||
|
match details {
|
||||||
|
Some(TaskDetails::DocumentDeletion {
|
||||||
|
ref mut deleted_documents,
|
||||||
|
..
|
||||||
|
}) => {
|
||||||
|
deleted_documents.replace(0);
|
||||||
|
}
|
||||||
|
Some(TaskDetails::ClearAll {
|
||||||
|
ref mut deleted_documents,
|
||||||
|
..
|
||||||
|
}) => {
|
||||||
|
deleted_documents.replace(0);
|
||||||
|
}
|
||||||
|
Some(TaskDetails::DocumentAddition {
|
||||||
|
ref mut indexed_documents,
|
||||||
|
..
|
||||||
|
}) => {
|
||||||
|
indexed_documents.replace(0);
|
||||||
|
}
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
(TaskStatus::Failed, Some(error.clone()), Some(*timestamp))
|
(TaskStatus::Failed, Some(error.clone()), Some(*timestamp))
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user