diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-15 16:21:41 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-15 16:21:41 +0100 |
commit | 3bf2df622a070fe8f233bec6d60bd5cca995fbfc (patch) | |
tree | 65ba71d4b950208c177a96ba34b797f18e732d5b /src/model | |
parent | 097c339d981dba0420af17d30d1221181d8bf1d7 (diff) | |
download | garage-3bf2df622a070fe8f233bec6d60bd5cca995fbfc.tar.gz garage-3bf2df622a070fe8f233bec6d60bd5cca995fbfc.zip |
Time and metadata improvements
Diffstat (limited to 'src/model')
-rw-r--r-- | src/model/block.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/block.rs b/src/model/block.rs index 5934f20c..36ad867a 100644 --- a/src/model/block.rs +++ b/src/model/block.rs @@ -11,9 +11,9 @@ use tokio::fs; use tokio::prelude::*; use tokio::sync::{watch, Mutex, Notify}; -use garage_util::data; use garage_util::data::*; use garage_util::error::Error; +use garage_util::time::*; use garage_rpc::membership::System; use garage_rpc::rpc_client::*; @@ -174,7 +174,7 @@ impl BlockManager { f.read_to_end(&mut data).await?; drop(f); - if data::blake2sum(&data[..]) != *hash { + if blake2sum(&data[..]) != *hash { let _lock = self.data_dir_lock.lock().await; warn!( "Block {:?} is corrupted. Renaming to .corrupted and resyncing.", |