diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-19 15:14:23 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-19 15:14:23 +0200 |
commit | 302502f4c10b4c1cd03d3b098b3e55a3f70054f2 (patch) | |
tree | 3e32c8751dc5d62b1723bcc2738aa77f12d45123 /src/table_sharded.rs | |
parent | 7131553c53d4414d2da0e9b60e6e3425f1b46ec2 (diff) | |
download | garage-302502f4c10b4c1cd03d3b098b3e55a3f70054f2.tar.gz garage-302502f4c10b4c1cd03d3b098b3e55a3f70054f2.zip |
Add support for fully replicated tables with epidemic dissemination of updates
Diffstat (limited to 'src/table_sharded.rs')
-rw-r--r-- | src/table_sharded.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table_sharded.rs b/src/table_sharded.rs index 485a9212..6a174d05 100644 --- a/src/table_sharded.rs +++ b/src/table_sharded.rs @@ -1,5 +1,5 @@ use crate::data::*; -use crate::membership::{System, Ring}; +use crate::membership::{Ring, System}; use crate::table::*; #[derive(Clone)] |