mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Ignore errors comming from crossbeam channel senders
This commit is contained in:
parent
e09eec37bc
commit
8f702828ca
3 changed files with 19 additions and 19 deletions
|
@ -268,7 +268,7 @@ impl<'t, 'u, 'i, 'a> IndexDocuments<'t, 'u, 'i, 'a> {
|
|||
});
|
||||
|
||||
if let Err(e) = result {
|
||||
lmdb_writer_sx.send(Err(e)).unwrap();
|
||||
let _ = lmdb_writer_sx.send(Err(e));
|
||||
}
|
||||
|
||||
// needs to be droped to avoid channel waiting lock.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue