Commit 640e767c authored by Tomasz Poradowski's avatar Tomasz Poradowski Committed by Nick Craver

Corrected formatting in docs/Timeouts.md (#811)

Example of setting ```minIoThreads``` configuration option for ASP.NET was not shown correctly.
parent 7c1563e5
......@@ -48,6 +48,7 @@ Given the above information, it's recommend to set the minimum configuration val
How to configure this setting:
- In ASP.NET, use the ["minIoThreads" configuration setting](https://msdn.microsoft.com/en-us/library/7w2sway1(v=vs.71).aspx) under the `<processModel>` configuration element in `machine.config`. According to Microsoft, you can't change this value per site by editing your web.config (even when you could do it in the past), so the value that you choose here is the value that all your .NET sites will use. Please note that you don't need to add every property if you put autoConfig in false, just putting autoConfig="false" and overriding the value is enough:
```xml
<processModel autoConfig="false" maxIoThreads="250" />
```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment