Skip to content

Commit ffb922d

Browse files
Merge pull request #277739 from Jar1-MSFT/patch-7
(AzureCXP) fixes MicrosoftDocs/azure-docs#123202
2 parents c633560 + c119b8c commit ffb922d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-functions/flex-consumption-how-to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ Here's how you can set HTTP concurrency limits for an existing app:
514514
Use the [`az functionapp scale config set`](/cli/azure/functionapp/scale/config#az-functionapp-scale-config-set) command to set specific HTTP concurrency limits for your app, regardless of instance size.
515515

516516
```azurecli
517-
az functionapp scale config set -resource-group <RESOURCE_GROUP> -name <APP_NAME> --trigger-type http --trigger-settings perInstanceConcurrency=10
517+
az functionapp scale config set --resource-group <RESOURCE_GROUP> --name <APP_NAME> --trigger-type http --trigger-settings perInstanceConcurrency=10
518518
```
519519

520520
This example sets the HTTP trigger concurrency level to `10`. After you specifically set an HTTP concurrency value, that value is maintained despite any changes in your app's instance size setting.

0 commit comments

Comments
 (0)