Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/subspace-service/src/sync_from_dsn/snap_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -517,8 +517,8 @@ where
{
let block_number = *header.number();

const STATE_SYNC_RETRIES: u32 = 5;
const LOOP_PAUSE: Duration = Duration::from_secs(20);
const STATE_SYNC_RETRIES: u32 = 10;
const LOOP_PAUSE: Duration = Duration::from_secs(10);

for attempt in 1..=STATE_SYNC_RETRIES {
debug!(%attempt, "Starting state sync...");
Expand Down