mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-09-13 16:26:26 +00:00
Ignore errors comming from crossbeam channel senders
This commit is contained in:
@ -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.
|
||||
|
Reference in New Issue
Block a user