Add tests on every platform and fix clippy errors

This commit is contained in:
Clémentine Urquizar
2021-03-22 19:17:18 +01:00
parent d34d7cbc37
commit f80ea24d2b
11 changed files with 73 additions and 39 deletions

View File

@ -197,7 +197,7 @@ impl<S: IndexStore + Sync + Send> IndexActor<S> {
.map_err(|e| IndexError::Error(e.into()))
}
*self.processing.write().await = Some(meta.index_uuid().clone());
*self.processing.write().await = Some(*meta.index_uuid());
let result = get_result(self, meta, data).await;
*self.processing.write().await = None;