mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
fix clipy warnings
This commit is contained in:
parent
74a1f88d88
commit
1647ca3c1f
5 changed files with 10 additions and 19 deletions
|
@ -110,7 +110,7 @@ impl Store {
|
|||
self.tasks.put(txn, &BEU64::new(task.id), task)?;
|
||||
// only add the task to the indexes index if it has an index_uid
|
||||
if let Some(ref index_uid) = task.index_uid {
|
||||
self.uids_task_ids.put(txn, &(&index_uid, task.id), &())?;
|
||||
self.uids_task_ids.put(txn, &(index_uid, task.id), &())?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue