Skip to content

Commit 2f9b646

Browse files
committed
Add edits
1 parent c5c9ed8 commit 2f9b646

3 files changed

Lines changed: 13 additions & 11 deletions

File tree

articles/container-apps/dapr-component-resiliency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ properties: {
278278

279279
| Metadata | Required | Description | Example |
280280
| -------- | --------- | ----------- | ------- |
281-
| `maxRetries` | Yes | Maximum retries to be executed for a failed http-request. | `5` |
281+
| `maxRetries` | Yes | Maximum retries to be executed for a failed http request. | `5` |
282282
| `retryBackOff` | Yes | Monitors the requests and shut off all traffic to the impacted service when timeout and retry criteria are met. | N/A |
283283
| `retryBackOff.initialDelayInMilliseconds` | Yes | Delay between first error and first retry. | `1000` |
284284
| `retryBackOff.maxIntervalInMilliseconds` | Yes | Maximum delay between retries. | `10000` |
@@ -353,7 +353,7 @@ Once debug logs are enabled, use a query similar to the following:
353353
```
354354
ContainerAppConsoleLogs_CL
355355
| where ContainerName_s == "daprd"
356-
| where Log_s contains "Resiliency configuration:"
356+
| where Log_s contains "Resiliency configuration ("
357357
| project time_t, Category, ContainerAppName_s, Log_s
358358
| order by time_t desc
359359
```

articles/container-apps/dapr-components.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ metadata:
5757

5858
## Component scopes
5959

60-
By default, all Dapr-enabled container apps within the same environment load the full set of deployed components. To ensure only the appropriate container apps load components at runtime, application scopes should be used. In the following example, the component is only loaded by the two Dapr-enabled container apps with Dapr application IDs `APP-ID-1` and `APP-ID-2`:
60+
By default, all Dapr-enabled container apps within the same environment load the full set of deployed components. To ensure only the appropriate container apps load components at runtime, application scopes should be used. In the following example, the component is only loaded by the two Dapr-enabled container apps with Dapr application IDs `APP-ID-1` and `APP-ID-2`.
6161

6262
```yaml
6363
componentType: [COMPONENT-TYPE]
@@ -79,7 +79,7 @@ scopes:
7979

8080
# [YAML](#tab/yaml)
8181

82-
To create a Dapr component via the Container Apps CLI, you can use a container apps YAML manifest. When configuring multiple components, you must create and apply a separate YAML file for each component.
82+
To create a Dapr component by using the Container Apps CLI, you can use a container apps YAML manifest. When configuring multiple components, you must create and apply a separate YAML file for each component.
8383

8484
```azurecli
8585
az containerapp env dapr-component set --name <your-environment-name> --resource-group <your-resource-group> --dapr-component-name pubsub --yaml "./pubsub.yaml"
@@ -108,7 +108,7 @@ scopes:
108108

109109
# [Bicep](#tab/bicep)
110110

111-
This resource defines a Dapr component called `dapr-pubsub` via Bicep. The Dapr component is defined as a child resource of the Container Apps environment. To define multiple components, you can add a `daprComponent` resource for each.
111+
This resource defines a Dapr component called `dapr-pubsub` by using Bicep. The Dapr component is defined as a child resource of the Container Apps environment. To define multiple components, you can add a `daprComponent` resource for each.
112112

113113
```bicep
114114
resource daprComponent 'daprComponents@2022-03-01' = {
@@ -141,7 +141,7 @@ resource daprComponent 'daprComponents@2022-03-01' = {
141141

142142
# [ARM](#tab/arm)
143143

144-
This resource defines a Dapr component called `dapr-pubsub` via ARM template.
144+
This resource defines a Dapr component called `dapr-pubsub` by using an ARM template.
145145

146146
```json
147147
{

articles/container-apps/dapr-functions-extension.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The [Dapr extension for Azure Functions](../azure-functions/functions-bindings-d
3131

3232
## Set up the environment
3333

34-
1. In the terminal, sign in to your Azure subscription.
34+
1. In the terminal, sign in to your Azure account.
3535

3636
```azurecli
3737
az login
@@ -102,6 +102,8 @@ In the command:
102102
- Replace `<quickstart-functionapp-url>` with your actual function app URL. For example: `https://daprext-funcapp.wittyglacier-20884174.eastus.azurecontainerapps.io`.
103103
- Replace `<quickstart-functionapp-name>` with your function app name.
104104

105+
To find your function app URL, navigate to **Container Appa** in the Azure portal, then select your new container app.
106+
105107
# [PowerShell](#tab/powershell)
106108

107109
```powershell
@@ -176,11 +178,11 @@ curl --location 'https://<quickstart-functionapp-url.io>/api/retrieveorder'
176178

177179
After you finish with this tutorial, run the following command to delete your resource group, along with all the resources you created.
178180

179-
```
180-
az group delete --resource-group $RESOURCE_GROUP
181+
```azurecli
182+
az group delete --resource-group <resource-group-name>
181183
```
182184

183185
## Related links
184186

185-
- [Learn more about the Dapr extension for Azure Functions](../azure-functions/functions-bindings-dapr.md)
186-
- [Learn more about connecting Dapr components to your container app](./dapr-component-connection.md)
187+
- [Dapr Extension for Azure Functions](../azure-functions/functions-bindings-dapr.md)
188+
- [Connect to Azure services via Dapr components in the Azure portal](./dapr-component-connection.md)

0 commit comments

Comments
 (0)