Skip to content

Commit

Permalink
increase heartbeat tick
Browse files Browse the repository at this point in the history
  • Loading branch information
jedleggett committed May 7, 2024
1 parent 6949038 commit e2aa1b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer/src/relayer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ impl RelayerImpl {
) -> RelayerResult<()> {
let mut highest_slot = Slot::default();

let heartbeat_tick = crossbeam_channel::tick(Duration::from_millis(200));
let heartbeat_tick = crossbeam_channel::tick(Duration::from_millis(100));
let metrics_tick = crossbeam_channel::tick(Duration::from_millis(1000));

let mut relayer_metrics = RelayerMetrics::new(
Expand Down

0 comments on commit e2aa1b8

Please sign in to comment.