-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[SpecFix] made RemoteConnection_should_send_and_decode_messages async #3800
[SpecFix] made RemoteConnection_should_send_and_decode_messages async #3800
Conversation
…code_messages async
There's no structural reason why this test should fail - appears to have been an issue with the socket-binding timing out. Converted everything to non-blocking I/O to see if the issue re-occurs. |
Looks like there was a legitimate deadlock produced in the test suite (which was what triggered this error earlier) - need to investigate |
…d_and_decode_messages async" This reverts commit 72fce5c.
So this spec is timing out on a basic Socket.BindAsync operation... if I can't figure out why, I'm going to mark it as skipped. Only thing I can think of is some issue with the underlying |
Since I can get this to fail 100% of the time on Azure DevOps, makes me wonder if it's a lack of IPV6 support that is causing it - that should result in the |
No longer failing 100% of the time, so it's definitely racy. Wondering if it has to do with test cases running in parallel accessing the static |
Reverting the other changes I made and marking this test as skipped - it's likely an issue with the |
…akkadotnet#3800) * working on akkadotnet#3786 - skipping RemoteConnection_should_send_and_decode_messages async
…akkadotnet#3800) * working on akkadotnet#3786 - skipping RemoteConnection_should_send_and_decode_messages async
part of #3786