This repository was archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 523
Add ExecutionTimeout parameter #484
Comments
Make sure this doesn't break websockets. |
Re: websockets @Tratcher I don't think so; but https isn't an upgrade request is it? |
Huh? |
My plan is to switch off the timers on opaque stream upgrade and assume they were handling that interaction (would also need to be same for MaxUploadBytes) - just making sure there is no corner cases I hadn't thought of (https in this case) |
Ah, sounds good. https shouldn't be any different from http in this scenario. |
Hmmm... may cause issue with large file uploads; so may still need a sliding window for body requests :-/ |
Hurrah, timeouts :D |
post RC-2 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Timeout between two successive body reads which if exceeded the client is determined to be disconnected and the request aborted.
Failure state:
408 Request Timeout
ngnix default
client_body_timeout
60sImplementation-wise the timer can use the same timer as Keep-alive; as a multi stage/state timer.
When deployed in recommended configuration with a reverse proxy (e.g. IIS/nginx) this would be handled by the proxy - however, this wouldn't apply in a pure Kestrel deployment.
The text was updated successfully, but these errors were encountered: