Skip to content

Commit f2c88ed

Browse files
im-samzggailey777
andauthored
Apply suggestions from code review
Thanks Glenn! Co-authored-by: Glenn Gailey <[email protected]>
1 parent 2aecee9 commit f2c88ed

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-functions/functions-deployment-technologies.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ You must manually sync triggers when using these deployment options:
6666
+ [Local Git](#local-git)
6767
+ [FTPS](#ftps)
6868

69-
You can sync triggers in one of three ways:
69+
You can sync triggers in one of these ways:
7070

7171
+ Restart your function app in the Azure portal.
7272

73-
+ Use the [az rest](/cli/azure/reference-index#az-rest) command to send an HTTP POST request that calls the `syncfunctiontriggers` API:
73+
+ Use the [`az rest`](/cli/azure/reference-index#az-rest) command to send an HTTP POST request that calls the `syncfunctiontriggers` API, as in this example:
7474

75-
```azurecli
76-
az rest --method post --url https://management.azure.com/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.Web/sites/<APP_NAME>/syncfunctiontriggers?api-version=2016-08-01
77-
```
75+
```azurecli
76+
az rest --method post --url https://management.azure.com/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.Web/sites/<APP_NAME>/syncfunctiontriggers?api-version=2016-08-01
77+
```
7878
When you deploy an updated version of the deployment package and maintain the same external package URL, you need to manually restart your function app. This indicates to the host that it should synchronize and redeploy your updates from the same package URL.
7979
The Functions host also performs a background trigger sync after the application has started. However, for the Consumption and Elastic Premium hosting plans you should also [manually sync triggers](#trigger-syncing) in these scenarios:
8080

0 commit comments

Comments
 (0)