How set timeout in action in asp.net core 2.0?
A request can not take more than 1 second. If it takes more than a second to return timeout.
How set timeout in action in asp.net core 2.0?
A request can not take more than 1 second. If it takes more than a second to return timeout.
You can set it with web.config
requestTimeout="00:20:00"
<aspNetCore processPath="dotnet" arguments=".\WebApplication1.dll" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" requestTimeout="00:20:00" />