Skip to content

Commit 56a77bf

Browse files
authored
Update app-service-plan-manage.md
Fixed layout errors found during preview
1 parent 6282f74 commit 56a77bf

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

articles/app-service/app-service-plan-manage.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,16 +105,6 @@ The preview of App Service Plan Asynchronous enables you to request your target
105105
> [!NOTE]
106106
> This behavior is NOT configurable for App Service Plans created in App Service Environments. App Service Environments create and scale App Service Plans asynchronously by default.
107107
108-
### [Scale-out (CLI)](#tab/asyncscaleout)
109-
```azurecli-interactive
110-
az appservice plan update -g <resourceGroupName> -n <App Service Plan Name> --async-scaling-enabled true --number-of-workers <number of workers to scale out to>
111-
```
112-
113-
### [Create (CLI)](#tab/asynccreate)
114-
```azurecli-interactive
115-
az appservice plan create -g asyncasp -n asyncasplinuxexample --number-of-workers 25 --sku p1v3 --async-scaling-enabled true --location northeurope
116-
```
117-
118108
### Scaling up or down App Service Plan SKUs
119109

120110
When using asynchronous scaling, it's possible to scale up or down to a larger or smaller SKU. During this type of operation, no other properties of the App Service Plan can be changed. Scaling up or down to a new SKU may fail if there aren't enough App Service Plan instances available to fully satisfy the request, this is to prevent your App Service Plan having fewer workers than requested.
@@ -124,6 +114,16 @@ If a scale up or down operation fails, you can either scale in or out within the
124114
### Cancelling an asynchronous scaling operation
125115

126116
An in-progress asynchronous scale operation is canceled only when you explicitly change the TargetWorkerCount property. Changes to other App Service Plan properties don't cancel the operation, including changes to the SKU, or App Service Plan instance count. App Service Plan instance count changes that can't be completed synchronously are ignored unless the TargetWorkerCount is also changed. To explicitly cancel the scale operation, set the TargetWorkerCount to 0.
117+
118+
### [Scale-out (CLI)](#tab/asyncscaleout)
119+
```azurecli-interactive
120+
az appservice plan update -g <resourceGroupName> -n <App Service Plan Name> --async-scaling-enabled true --number-of-workers <number of workers to scale out to>
121+
```
122+
123+
### [Create (CLI)](#tab/asynccreate)
124+
```azurecli-interactive
125+
az appservice plan create -g asyncasp -n asyncasplinuxexample --number-of-workers 25 --sku p1v3 --async-scaling-enabled true --location northeurope
126+
```
127127
---
128128

129129
<a name="delete"></a>

0 commit comments

Comments
 (0)