We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Set up OpenFire server:
$ docker run --name openfire --publish 9090:9090 --publish 5222:5222 --publish 7777:7777 --publish 7070:7070 sameersbn/openfire:3.10.3-19
Start a program written by @dsparkplug to illustrate Deadlock #95: Deadlock #95 (comment)
The program will (at least in my environment) will eventually fail with InvalidOperationException("Socket not connected.") from here: https://github.com/ForNeVeR/Jabber-Net/blob/89a7d9f0a5cba983d4a8ddd9555074f85c3495e0/src/JabberNet/bedrock/net/AsyncSocket.cs#L884
InvalidOperationException("Socket not connected.")
It looks like sometimes the callback gets dispatched after the socket disconnects.
We need to fix that.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Set up OpenFire server:
$ docker run --name openfire --publish 9090:9090 --publish 5222:5222 --publish 7777:7777 --publish 7070:7070 sameersbn/openfire:3.10.3-19
Start a program written by @dsparkplug to illustrate Deadlock #95: Deadlock #95 (comment)
The program will (at least in my environment) will eventually fail with
InvalidOperationException("Socket not connected.")
from here: https://github.com/ForNeVeR/Jabber-Net/blob/89a7d9f0a5cba983d4a8ddd9555074f85c3495e0/src/JabberNet/bedrock/net/AsyncSocket.cs#L884It looks like sometimes the callback gets dispatched after the socket disconnects.
We need to fix that.
The text was updated successfully, but these errors were encountered: