diff options
Diffstat (limited to 'src/core/garage.rs')
-rw-r--r-- | src/core/garage.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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..."); |