You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Blocking Detection for ASP.NET Core
6
6
7
7
## Detect Blocking Calls in ASP.NET Core Applications
8
8
9
-
Blocking calls can lead to ThreadPool starvation. Ouputs a warning to the log when blocking calls are made on the ThreadPool.
9
+
Blocking calls can lead to ThreadPool starvation. Outputs a warning to the log when blocking calls are made on the ThreadPool.
10
10
11
11
### Usage
12
12
@@ -20,7 +20,7 @@ app.UseBlockingDetection();
20
20
21
21
Doesn't detect everything... so its not a panacea; you should actively try to avoid using blocking calls.
22
22
23
-
1. For `async` methods with occurances of **`.ConfigureAwait(false)`**, detection won't alert for blocking `Monitor` calls after occurances in the case where the returned `Task` wasn't already completed
23
+
1. For `async` methods with occurances of **`.ConfigureAwait(false)`**, detection won't alert for blocking `Monitor` calls after occurences in the case where the returned `Task` wasn't already completed
24
24
2. Won't alert for blocking calls that don't block, like on precompleted `Task`s (e.g. a single small `Body.Write`)
25
25
3. Won't alert for blocking that happens in syscalls (e.g. `File.Read(...)`, `Thread.Sleep`)
0 commit comments