This repository was archived by the owner on Jun 20, 2019. It is now read-only.
This repository was archived by the owner on Jun 20, 2019. It is now read-only.
AspNetCoreModule needs to abort failed responses #26
Closed
Description
From @Tratcher on November 19, 2015 20:2
aspnet/KestrelHttpServer#341 (comment)
If the back-end server fails while writing out the response body (after the first 8kb) and closes/resets the connection, platform handler does not correctly fail the response to the client.
For a chunked request that fails sometime before the final chunked terminator the handler mistakenly adds the missing terminator. This is problematic because it tells the client the response completed successfully. It should have just closed/reset the connection.
Content-Length responses that fail after sending 8kb just hang.
Copied from original issue: aspnet/IISIntegration#39