Skip to content

Commit

Permalink
fix: increase connector retry factor
Browse files Browse the repository at this point in the history
  - to avoid having the delay going down, the factor must be higher than 1
  • Loading branch information
guillaumelamirand committed Apr 4, 2024
1 parent f522c3b commit 25fd826
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -109,7 +109,7 @@ public Completable initialize() {
1,
300,
TimeUnit.SECONDS,
0.5,
1.5,
throwable -> throwable instanceof WebSocketConnectorException connectorException && connectorException.isRetryable()
)
)
Expand Down

0 comments on commit 25fd826

Please sign in to comment.