-
Notifications
You must be signed in to change notification settings - Fork 25
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
Crashes #598
Crashes #598
Conversation
LGTM so far. |
@ricardopereira @tcard I must admit I am still a little nervous about this fix because as far as I can tell, we don't yet understand how this could have happened. What worries me is that it's plausible we're just covering up a bigger underlying issue, and as far as I can tell, we've not seen any indication that the realtime system is delivering ACK/NACKs out of order for example. Few things:
|
No. We're focusing first on handling unexpected conditions gracefully.
That's a good idea, I'll add support for sending Sentry reports without crashing. |
I was afraid that the incoming messages were processed with a different order but I did some tests and the dispatch queue is well implemented. The queue is serial so each task is executed one at a time in the order in which they were added to the queue. |
Ok, well apparently not if it's crashing 😏 On a serious note though, no other library has reported this problem so it seems unlikely this is a realtime issue. As such, the iOS lib is probably doing something odd in this area. |
Yes, I agree but I don't know where to look. I was suspicious about the incoming messages order but that's something that is working as expected. @tcard Do you have any suggestion? |
No description provided.