Skip to content

Commit

Permalink
increase duration of dial timer
Browse files Browse the repository at this point in the history
  • Loading branch information
sdwoodbury committed Nov 9, 2023
1 parent 96469af commit 7c277cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/warp-blink-wrtc/src/blink_impl/blink_controller.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,8 +264,8 @@ async fn run(

let mut call_data_map = CallDataMap::new(own_id.clone());
let mut dial_timer = tokio::time::interval_at(
Instant::now() + Duration::from_millis(1000),
Duration::from_millis(1000),
Instant::now() + Duration::from_millis(3000),
Duration::from_millis(3000),
);

loop {
Expand Down

0 comments on commit 7c277cc

Please sign in to comment.