refactor: Replace remaining std Mutexes

This commit is contained in:
Jade Ellis
2025-07-19 22:05:43 +01:00
parent a1d616e3e3
commit 374fb2745c
11 changed files with 83 additions and 117 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ pub fn backup_count(&self) -> Result<usize> {
fn backup_engine(&self) -> Result<BackupEngine> {
let path = self.backup_path()?;
let options = BackupEngineOptions::new(path).map_err(map_err)?;
BackupEngine::open(&options, &*self.ctx.env.lock()?).map_err(map_err)
BackupEngine::open(&options, &self.ctx.env.lock()).map_err(map_err)
}
#[implement(Engine)]