mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-25 22:34:28 +01:00
Fix meilisearch-http to use the new DocumentImport batch operation
This commit is contained in:
parent
07286fcc79
commit
3b343a930e
@ -285,24 +285,13 @@ async fn document_addition(
|
||||
}
|
||||
};
|
||||
|
||||
let task = match method {
|
||||
IndexDocumentsMethod::ReplaceDocuments => KindWithContent::DocumentAddition {
|
||||
content_file: uuid,
|
||||
documents_count,
|
||||
primary_key,
|
||||
allow_index_creation,
|
||||
index_uid,
|
||||
},
|
||||
|
||||
IndexDocumentsMethod::UpdateDocuments => KindWithContent::DocumentUpdate {
|
||||
content_file: uuid,
|
||||
documents_count,
|
||||
primary_key,
|
||||
allow_index_creation,
|
||||
index_uid,
|
||||
},
|
||||
// TODO: TAMO: can I get rids of the `non_exhaustive` on the IndexDocumentsMethod enum
|
||||
_ => todo!(),
|
||||
let task = KindWithContent::DocumentImport {
|
||||
method,
|
||||
content_file: uuid,
|
||||
documents_count,
|
||||
primary_key,
|
||||
allow_index_creation,
|
||||
index_uid,
|
||||
};
|
||||
|
||||
let scheduler = index_scheduler.clone();
|
||||
|
Loading…
Reference in New Issue
Block a user