diff options
author | Alex Auvolat <alex@adnab.me> | 2021-03-10 21:50:09 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-03-10 21:50:09 +0100 |
commit | 3214dd52dd144c99353830d7340ea158e262b06f (patch) | |
tree | 888445068edb26084f32961c210da4a4c38240cf /src/rpc/ring.rs | |
parent | af7600f989d79d07253405647973828435f9d16c (diff) | |
download | garage-3214dd52dd144c99353830d7340ea158e262b06f.tar.gz garage-3214dd52dd144c99353830d7340ea158e262b06f.zip |
Very minor changes
Diffstat (limited to 'src/rpc/ring.rs')
-rw-r--r-- | src/rpc/ring.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/ring.rs b/src/rpc/ring.rs index 85caafeb..0f86bbb2 100644 --- a/src/rpc/ring.rs +++ b/src/rpc/ring.rs @@ -172,7 +172,7 @@ impl Ring { pub fn walk_ring(&self, from: &Hash, n: usize) -> Vec<UUID> { if self.ring.len() != 1 << PARTITION_BITS { - warn!("Ring not yet ready, read/writes will be lost"); + warn!("Ring not yet ready, read/writes will be lost!"); return vec![]; } |