Skip to content

Commit

Permalink
Minor typos (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
webprofusion-chrisc authored Dec 17, 2020
1 parent 8d0acd2 commit fce6c53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Blocking Detection for ASP.NET Core

## Detect Blocking Calls in ASP.NET Core Applications

Blocking calls can lead to ThreadPool starvation. Ouputs a warning to the log when blocking calls are made on the ThreadPool.
Blocking calls can lead to ThreadPool starvation. Outputs a warning to the log when blocking calls are made on the ThreadPool.

### Usage

Expand All @@ -20,7 +20,7 @@ app.UseBlockingDetection();

Doesn't detect everything... so its not a panacea; you should actively try to avoid using blocking calls.

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
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
2. Won't alert for blocking calls that don't block, like on precompleted `Task`s (e.g. a single small `Body.Write`)
3. Won't alert for blocking that happens in syscalls (e.g. `File.Read(...)`, `Thread.Sleep`)

Expand Down

0 comments on commit fce6c53

Please sign in to comment.