Skip to content

Commit

Permalink
Increase coordinator stale timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Jul 31, 2024
1 parent 94da5e0 commit c1922b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coordinator/src/handlers/block_streams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ impl BlockStreamsHandler {
let updated_at =
SystemTime::UNIX_EPOCH + Duration::from_secs(health.updated_at_timestamp_secs);

let stale = updated_at.elapsed().unwrap_or_default() > Duration::from_secs(60);
let stale = updated_at.elapsed().unwrap_or_default() > Duration::from_secs(180);
let stalled = matches!(
health.processing_state.try_into(),
Ok(ProcessingState::Stalled)
Expand Down

0 comments on commit c1922b0

Please sign in to comment.