We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d752bc6 commit 6f51e27Copy full SHA for 6f51e27
crates/websocket-proxy/src/main.rs
@@ -255,7 +255,7 @@ async fn main() {
255
.with_max_backoff_interval(Duration::from_millis(args.subscriber_max_interval_ms))
256
.with_ping_interval(Duration::from_millis(args.subscriber_ping_interval_ms))
257
.with_pong_timeout(Duration::from_millis(args.subscriber_pong_timeout_ms))
258
- .with_backoff_initial_interval(Duration::from_secs(500))
+ .with_backoff_initial_interval(Duration::from_millis(500))
259
.with_initial_grace_period(Duration::from_secs(5));
260
261
let mut subscriber =
0 commit comments