Skip to content

Commit

Permalink
fix(core): increase sync timeouts (#4800)
Browse files Browse the repository at this point in the history
Co-authored-by: Cayle Sharrock <CjS77@users.noreply.github.com>
  • Loading branch information
sdbondi and CjS77 authored Oct 18, 2022
1 parent 02b8660 commit 87dfab5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base_layer/core/src/base_node/sync/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ pub struct BlockchainSyncConfig {
impl Default for BlockchainSyncConfig {
fn default() -> Self {
Self {
initial_max_sync_latency: Duration::from_secs(20),
initial_max_sync_latency: Duration::from_secs(30),
max_latency_increase: Duration::from_secs(2),
ban_period: Duration::from_secs(30 * 60),
short_ban_period: Duration::from_secs(60),
forced_sync_peers: Default::default(),
validation_concurrency: 6,
rpc_deadline: Duration::from_secs(10),
rpc_deadline: Duration::from_secs(30),
}
}
}

0 comments on commit 87dfab5

Please sign in to comment.