HTTP/2 stress server intermitently fails in duplex scenarios #42200
Labels
area-System.Net.Http
bug
tenet-reliability
Reliability/stability related issue (stress, load problems, etc.)
Milestone
When sending custom content in H/2 and using simple echo server. Then client disposes the response which might send
RESET
before the lastDATA
frame withEND_STREAM
flag leading to a server-side exception:The root of the issue resides in sending
END_STREAM
completely asynchronously.SendAsync
has finished.SerializeToStreamAsync
is not a strong indicator that theEND_STREAM
has been sent, it still happens completely asynchronously.Relates to #1511
The text was updated successfully, but these errors were encountered: