Skip to content

Commit 2d472de

Browse files
Set default replication factor to 3
1 parent bce9901 commit 2d472de

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

core/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## [1.2.12]
44

5+
- Set default replication factor to 3
56
- Introduced Polynomial Multiproofs to app-clients
67
- Fixed check that causes error log on inserting rows into the DHT
78

core/src/network/p2p/configuration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ impl Default for KademliaConfig {
186186
bootstrap_period: Duration::from_secs(5 * 60),
187187
publication_interval: None,
188188
record_replication_interval: None,
189-
record_replication_factor: NonZeroUsize::new(5).unwrap(),
189+
record_replication_factor: NonZeroUsize::new(3).unwrap(),
190190
store_pruning_interval: 180,
191191
query_timeout: Duration::from_secs(10),
192192
query_parallelism: NonZeroUsize::new(3).unwrap(),

0 commit comments

Comments
 (0)