-
Client initialization:
Expected Behaviour Actual Behaviour Debug Information
Further Information Lines 328 to 337 in e9f7c94 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
All non-close-event connection problems are considered fatal by default. Your client seems to be throwing If you want the client to retry regardless, you can implement your own |
Beta Was this translation helpful? Give feedback.
All non-close-event connection problems are considered fatal by default. Your client seems to be throwing
undefined
, which is not a WebSocket CloseEvent.If you want the client to retry regardless, you can implement your own
shouldRetry
option and have it returntrue
always (or with pre v5.8.0 the now deprecatedisFatalConnectionProblem
option and returnfalse
always).