-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android app crashes after network error using TCP transport #202
Comments
hey, could you add
|
Hej olme04, sure, here is the relevant log from android logcat:
|
TBH, I have no idea on what changed, which cause such an issue
All marked as fixed, but who knows.. Also, one more idea, can you try to create tcp client with additional exception handler and send error message here, like this: TcpClientTransport(host, port, context = CoroutineExceptionHandler { c, e -> println("TCPFAIL: $c -> $e") }) |
With this exception handler, the app does not crash anymore.
I'll leave this in, as it fixes the issue and after the connection is back it does work forward on. Should I leave this issue open or do I close it? |
Cool, that it help's you! |
Great. I've changed the title. Many thanks for your assistance once again :) |
No problem, Im here to help to solve any issue with rsocket-kotlin :) |
Hello @olme04, I believe something similar is happening on iOS platform. It is not strictly network related, but I'll try to explain and if you think it should be a separate issue, I'll create a new one. On iOS platform the app crashes without any warnings (or recorded errors) when you lock the device (e.g. press power button to turn the screen off and lock the device), wait for a couple minutes and then unlock the device again. The only log (so far) is:
Am I doing something wrong? Is there any better way to disconnect via method call? Let me know if it's a separate issue. |
Hey, Im not so familiar with iOS development, but looks like it's related to sockets under the hood, so, |
Hey, interestingly adding |
One more thing @olme04 :), what is the proper way to disconnect the connection? I've just noticed that |
Looks like it's a bug in current implementation, as for now, |
I am facing the same issue. Where should I use the TcpClientTransport? |
Newest version (0.14.3) does not reconnect if network is down.
Expected Behavior
When network is lost reconnectable should trigger reconnect attempts and recover if network is available again.
Actual Behavior
App crashes with the following log if wifi is turned off:
Steps to Reproduce
Reconnectable configuration (was not changed from previous versions) in commonMain:
Initial connection configuration:
Your Environment
Maybe it has something to do with: #150
The text was updated successfully, but these errors were encountered: