Skip to content

Commit 4a8c7df

Browse files
committed
Fix blocking issues
1 parent 0b3a28e commit 4a8c7df

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ For Python v2 functions defined using a decorator, the following properties on t
374374
|-------------|-----------------------------|
375375
|`arg_name` | The variable name used in function code that represents the list of documents with changes. |
376376
|`database_name` | The name of the Azure Cosmos DB database with the collection being monitored. |
377-
|`collection_name` | The name of the Azure CosmosDB collection being monitored. |
377+
|`collection_name` | The name of the Azure Cosmos DB collection being monitored. |
378378
|`connection` | The connection string of the Azure Cosmos DB being monitored. |
379379

380380
For Python functions defined by using *function.json*, see the [Configuration](#configuration) section.

articles/azure-functions/functions-target-based-scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Target-based scaling provides a fast and intuitive scaling model for customers a
1717

1818
Target-based scaling replaces the previous Azure Functions incremental scaling model as the default for these extension types. Incremental scaling added or removed a maximum of one worker at [each new instance rate](event-driven-scaling.md#understanding-scaling-behaviors), with complex decisions for when to scale. In contrast, target-based scaling allows scale up of four instances at a time, and the scaling decision is based on a simple target-based equation:
1919

20-
![Desired instances = event source length / target executions per instance](./media/functions-target-based-scaling/targetbasedscalingformula.png)
20+
![Illustration of the equation: desired instances = event source length / target executions per instance.](./media/functions-target-based-scaling/target-based-scaling-formula.png)
2121

2222
The default _target executions per instance_ values come from the SDKs used by the Azure Functions extensions. You don't need to make any changes for target-based scaling to work.
2323

0 commit comments

Comments
 (0)