Skip to content

Commit 640e767

Browse files
tporadowskiNickCraver
authored andcommitted
Corrected formatting in docs/Timeouts.md (#811)
Example of setting ```minIoThreads``` configuration option for ASP.NET was not shown correctly.
1 parent 7c1563e commit 640e767

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/Timeouts.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ Given the above information, it's recommend to set the minimum configuration val
4848
How to configure this setting:
4949

5050
- 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:
51+
5152
```xml
5253
<processModel autoConfig="false" maxIoThreads="250" />
5354
```

0 commit comments

Comments
 (0)