You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/tutorial-durable-text-analysis-azure-files.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ In this tutorial, you:
26
26
27
27
## Prerequisites
28
28
29
-
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn)
29
+
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/pricing/purchase-options/azure-account?cid=msft_learn).
30
30
-[Azure CLI](/cli/azure/install-azure-cli) version 2.60.0 or later
31
31
-[Azure Functions Core Tools](./functions-run-local.md) version 4.x or later
32
32
-[Python 3.9 or later](https://www.python.org/downloads/)
@@ -193,7 +193,7 @@ This tutorial uses Bicep to automate resource creation.
193
193
194
194
## Prepare and deploy the function app
195
195
196
-
1. Make sure the required app settings exist on the remote function app. This command can be run even if these settings already exist:
196
+
1. Make sure the remote function app has the required app settings. Run this command even if these settings already exist:
197
197
198
198
```azurecli
199
199
az functionapp config appsettings set \
@@ -289,7 +289,7 @@ This tutorial uses Bicep to automate resource creation.
289
289
```
290
290
291
291
> [!TIP]
292
-
> Your function app accessed all three files in parallel through the storage mount. No per-request network calls were needed. The function read them directly from the mounted share by using standard file I/O. This approach demonstrates the power of storage mounts combined with Durable Functions.
292
+
> Your function app accessed all three files in parallel through the storage mount. The app didn't need any per-request network calls. The function read them directly from the mounted share by using standard file I/O. This approach demonstrates the power of storage mounts combined with Durable Functions.
0 commit comments