Local cache lock (#5193)

This commit is contained in:
François-Xavier Talbot
2026-01-23 18:35:46 -05:00
committed by GitHub
parent fa421b4b83
commit 2d7e87a4cb
5 changed files with 215 additions and 136 deletions

View File

@@ -79,4 +79,8 @@ pub enum DatabaseError {
time_spent_pool_wait_ms: u64,
time_spent_total_ms: u64,
},
#[error(
"Timeout waiting on local cache lock ({released}/{total} released)"
)]
LocalCacheTimeout { released: usize, total: usize },
}