-
Expected Behaviour Actual Behaviour Further Information I'd love it if anyone could guide me Here is the client application https://drive.google.com/file/d/1qf-UZm5UPCZaCC-nzDIRba7kqPB5HrpK/view?usp=sharing |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Similar to #355. All non-close-event connection problems are considered fatal by default. Your client seems to be throwing an If you want the client to retry regardless, you can implement your own |
Beta Was this translation helpful? Give feedback.
Similar to #355.
All non-close-event connection problems are considered fatal by default. Your client seems to be throwing an
Event
, 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).