You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is some minor request validation that we do at the beginning of HttpConnection.SendAsync. This validation can cause us to throw NotSupportedException in some rare cases.
We should do this validation earlier in the request processing. At this point, we've already established a connection (or pulled one from the pool), and throwing here will cause the connection to be torn down unnecessarily.
The text was updated successfully, but these errors were encountered:
There is some minor request validation that we do at the beginning of HttpConnection.SendAsync. This validation can cause us to throw NotSupportedException in some rare cases.
We should do this validation earlier in the request processing. At this point, we've already established a connection (or pulled one from the pool), and throwing here will cause the connection to be torn down unnecessarily.
The text was updated successfully, but these errors were encountered: