diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-06 16:32:06 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-06 16:32:06 +0200 |
commit | bbf68aa039678d844e7d88db1a23a128f877ba43 (patch) | |
tree | 1d92174e9c26d4b2271938eeeb2914f844a7bf26 | |
parent | 72e6419b1b43fed5381b94c6ec01c53de34e5b17 (diff) | |
download | garage-bbf68aa039678d844e7d88db1a23a128f877ba43.tar.gz garage-bbf68aa039678d844e7d88db1a23a128f877ba43.zip |
fix
-rw-r--r-- | src/block/manager.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/manager.rs b/src/block/manager.rs index 17b45935..48aed75d 100644 --- a/src/block/manager.rs +++ b/src/block/manager.rs @@ -230,7 +230,7 @@ impl BlockManager { // queue can't work here, it would just provoke a deadlock in the SQLite adapter code. // This is mostly because the Rust bindings for SQLite assume a worst-case scenario // where SQLite is not compiled in thread-safe mode, so we have to wrap everything - // in a mutex (see db/sqlite_adapter.rs). + // in a mutex (see db/sqlite_adapter.rs and discussion in PR #322). let mut batch_of_hashes = vec![]; let start_bound = match next_start.as_ref() { None => Bound::Unbounded, |