From db6f1f35a869f9afa22198ee2ac32a812afae3c5 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Tue, 30 Jun 2020 15:03:34 +0200 Subject: Rename epidemic_factor to epidemic_fanout (that's what it is); complete conf example in readme --- src/core/garage.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/garage.rs b/src/core/garage.rs index d77b0acd..46e0d02f 100644 --- a/src/core/garage.rs +++ b/src/core/garage.rs @@ -66,8 +66,8 @@ impl Garage { }; let control_rep_param = TableFullReplication::new( - config.meta_epidemic_factor, - (config.meta_epidemic_factor + 1) / 2, + config.meta_epidemic_fanout, + (config.meta_epidemic_fanout + 1) / 2, ); info!("Initialize block manager..."); -- cgit v1.2.3