-
Notifications
You must be signed in to change notification settings - Fork 7
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
websocket-related crash #83
Comments
Example of crash from the Tablet, compiled to native |
Found the bug, by running the app in Visual Studio for a long time:
related code: private void CleanUp()
{
_ReconnectTimer?.Dispose();
try
{
_webSocket?.Close(1000, SocketCloseMessage);
}
catch (Exception ex)
{
LoggingService.LogInfo($"Closing Websocket Failed, {ex.ToString()}", Windows.Foundation.Diagnostics.LoggingLevel.Error);
}
_messageWriter?.DetachStream();
_messageWriter?.Dispose();
_messageWriter = null;
_webSocket?.Dispose();
_webSocket = null;
} |
VladimirAkopyan
added a commit
that referenced
this issue
Oct 8, 2017
Need to implement all the errors from https://docs.microsoft.com/en-us/uwp/api/windows.web.weberrorstatus |
VladimirAkopyan
changed the title
websocket-related crash on the publishing app
websocket-related crash
Oct 8, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The app on the tablet crashes sometimes while publishing data, happens every 10 hours or so.
The stack-trace form the store says it's related to the web-socket class, which is entirely feasible.
stackTrace.txt
The text was updated successfully, but these errors were encountered: