mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02: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
1 changed files with 5 additions and 1 deletions
|
@ -205,7 +205,11 @@ impl<'a> Search<'a> {
|
|||
Ok(embedding) => embedding,
|
||||
Err(error) => {
|
||||
tracing::error!(error=%error, "Embedding failed");
|
||||
return Ok((keyword_results, Some(0)));
|
||||
return Ok(return_keyword_results(
|
||||
self.limit,
|
||||
self.offset,
|
||||
keyword_results,
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue