Skip to content

Commit

Permalink
Update global concurrency limits docs for removed create_if_missing b…
Browse files Browse the repository at this point in the history
…ehavior (#15517)
  • Loading branch information
collincchoy authored Sep 27, 2024
1 parent 510e44f commit 05ec2b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/3.0/develop/global-concurrency-limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,10 @@ The `concurrency`context manager allows control over the maximum number of concu
or asynchronous (`async`) version, depending on your use case. Here's how to use it:

<Tip>
**Concurrency limits are implicitly created in an inactive state**
**Concurrency limits are not implicitly created**

When using the `concurrency` context manager, if the provided `names` of the concurrency limits don't already exist, they are created in an inactive state.
When using the `concurrency` context manager, if the provided `names` of the concurrency limits don't already exist, then no limiting is enforced and a warning will be logged.
For stricter control, use `strict=True` to instead raise an error if no matching limits exist to block execution of the task.
</Tip>

**Sync**
Expand Down

0 comments on commit 05ec2b9

Please sign in to comment.