mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 05:14:27 +01:00
fix the v1
This commit is contained in:
parent
40ced3ff8d
commit
ef438852cd
@ -51,7 +51,7 @@ impl From<Settings> for index_controller::Settings {
|
|||||||
warn!("The criteria `words` and `wordsPosition` have been merged into a single criterion `words` so `wordsPositon` will be ignored");
|
warn!("The criteria `words` and `wordsPosition` have been merged into a single criterion `words` so `wordsPositon` will be ignored");
|
||||||
Some(String::from("words"))
|
Some(String::from("words"))
|
||||||
}
|
}
|
||||||
"attribute" | "exactness" => {
|
"exactness" => {
|
||||||
error!("The criterion `{}` is not implemented currently and thus will be ignored", criterion);
|
error!("The criterion `{}` is not implemented currently and thus will be ignored", criterion);
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
@ -97,13 +97,14 @@ pub fn import_index(size: usize, dump_path: &Path, index_path: &Path, primary_ke
|
|||||||
let file = File::open(&dump_path.join("documents.jsonl"))?;
|
let file = File::open(&dump_path.join("documents.jsonl"))?;
|
||||||
let reader = std::io::BufReader::new(file);
|
let reader = std::io::BufReader::new(file);
|
||||||
|
|
||||||
index.update_documents(
|
// TODO: TAMO: waiting for milli. We should use the result
|
||||||
|
let _ = index.update_documents(
|
||||||
UpdateFormat::JsonStream,
|
UpdateFormat::JsonStream,
|
||||||
IndexDocumentsMethod::ReplaceDocuments,
|
IndexDocumentsMethod::ReplaceDocuments,
|
||||||
Some(reader),
|
Some(reader),
|
||||||
update_builder,
|
update_builder,
|
||||||
primary_key,
|
primary_key,
|
||||||
)?;
|
);
|
||||||
|
|
||||||
// at this point we should handle the updates, but since the update logic is not handled in
|
// at this point we should handle the updates, but since the update logic is not handled in
|
||||||
// meilisearch we are just going to ignore this part
|
// meilisearch we are just going to ignore this part
|
||||||
|
Loading…
Reference in New Issue
Block a user