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 553785c commit 67baf71Copy full SHA for 67baf71
src/main/kotlin/org/phoenixframework/PhxSocket.kt
@@ -46,7 +46,7 @@ open class PhxSocket(
46
47
/** Interval between socket reconnect attempts */
48
var reconnectAfterMs: ((tries: Int) -> Long) = closure@{
49
- return@closure if (it >= 3) 100000 else longArrayOf(1000, 2000, 5000)[it]
+ return@closure if (it >= 3) 10000 else longArrayOf(1000, 2000, 5000)[it]
50
}
51
52
/** Hook for custom logging into the client */
0 commit comments