We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecdccae commit 9938cd8Copy full SHA for 9938cd8
src/Microsoft.TestPlatform.CommunicationUtilities/TcpClientExtensions.cs
@@ -71,7 +71,11 @@ internal static Task MessageLoopAsync(
71
ioException,
72
remoteEndPoint,
73
localEndPoint);
74
- error = ioException;
+ // Do not pass the error to the caller, the transport was torn down because testhost
75
+ // disconnected, in 99% of the cases. This error ends up confusing developers
76
+ // even though it just means "testhost crashed", look at testhost to see what happened.
77
+ // https://github.com/microsoft/vstest/issues/4461
78
+ // error = ioException;
79
break;
80
}
81
0 commit comments