Skip to content

Commit 6f51e27

Browse files
committed
Fix initial backoff interval
1 parent d752bc6 commit 6f51e27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/websocket-proxy/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ async fn main() {
255255
.with_max_backoff_interval(Duration::from_millis(args.subscriber_max_interval_ms))
256256
.with_ping_interval(Duration::from_millis(args.subscriber_ping_interval_ms))
257257
.with_pong_timeout(Duration::from_millis(args.subscriber_pong_timeout_ms))
258-
.with_backoff_initial_interval(Duration::from_secs(500))
258+
.with_backoff_initial_interval(Duration::from_millis(500))
259259
.with_initial_grace_period(Duration::from_secs(5));
260260

261261
let mut subscriber =

0 commit comments

Comments
 (0)