mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 12:54:26 +01:00
Use return_keyword_results
function instead of returning raw keyword results when the embedder is broken
This commit is contained in:
parent
94fb55bb6f
commit
3a8051866a
@ -205,7 +205,11 @@ impl<'a> Search<'a> {
|
|||||||
Ok(embedding) => embedding,
|
Ok(embedding) => embedding,
|
||||||
Err(error) => {
|
Err(error) => {
|
||||||
tracing::error!(error=%error, "Embedding failed");
|
tracing::error!(error=%error, "Embedding failed");
|
||||||
return Ok((keyword_results, Some(0)));
|
return Ok(return_keyword_results(
|
||||||
|
self.limit,
|
||||||
|
self.offset,
|
||||||
|
keyword_results,
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user