-
Dear folks, How to increse requesttimeout (aspnetcore default is 2 minutes) to a single controller action? Is there any way instead of higher in web.config for the whole app? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Answered by
Tratcher
Jul 22, 2020
Replies: 1 comment 3 replies
-
You must be using IIS out-of-proc. That acts as a proxy so it does not have any granular config. If you move to IIS in-proc (2.2+) then there will be no default timeout. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
lixaotec
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You must be using IIS out-of-proc. That acts as a proxy so it does not have any granular config.
If you move to IIS in-proc (2.2+) then there will be no default timeout.