Skip to content

Commit aeb716b

Browse files
committed
Fix caps for 'settings'
1 parent 4d80a4d commit aeb716b

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

articles/logic-apps/edit-app-settings-host-settings.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ For built-in operations that run as function calls in Azure Functions, add both
260260
},
261261
"extensions": {
262262
"workflow": {
263-
"settings": {
263+
"Settings": {
264264
"Runtime.FlowRunRetryableActionJobCallback.ActionJobExecutionTimeout": "01:00:00"
265265
}
266266
}
@@ -503,7 +503,7 @@ To add a setting, follow these steps:
503503

504504
1. If the **host.json** file is already open, return to the **host.json** file. Otherwise, follow the preceding steps to open the **host.json** file.
505505

506-
1. Under the `extensionBundle` object, add the `extensions` object, which includes the `workflow` and `settings` objects, for example:
506+
1. Under the `extensionBundle` object, add the `extensions` object, which includes the `workflow` and `Settings` objects, for example:
507507

508508
```json
509509
{
@@ -514,14 +514,14 @@ To add a setting, follow these steps:
514514
},
515515
"extensions": {
516516
"workflow": {
517-
"settings": {
517+
"Settings": {
518518
}
519519
}
520520
}
521521
}
522522
```
523523

524-
1. In the `settings` object, add a flat list with the host settings that you want to use for all the workflows in your logic app, whether those workflows run locally or in Azure, for example:
524+
1. In the `Settings` object, add a flat list with the host settings that you want to use for all the workflows in your logic app, whether those workflows run locally or in Azure, for example:
525525

526526
```json
527527
{
@@ -532,7 +532,7 @@ To add a setting, follow these steps:
532532
},
533533
"extensions": {
534534
"workflow": {
535-
"settings": {
535+
"Settings": {
536536
"Runtime.Trigger.MaximumWaitingRuns": "100"
537537
}
538538
}
@@ -552,13 +552,13 @@ To review the host settings for your logic app in Visual Studio Code, follow the
552552

553553
1. In your logic app project, at the root project level, find and open the **host.json** file.
554554

555-
1. In the `extensions` object, under `workflows` and `settings`, review any host settings that were previously added for your logic app. Otherwise, the `extensions` object doesn't appear in the file.
555+
1. In the `extensions` object, under `workflows` and `Settings`, review any host settings that were previously added for your logic app. Otherwise, the `extensions` object doesn't appear in the file.
556556

557557
For more information about host settings, see [Reference for host settings - host.json](#reference-host-json).
558558

559559
To add a host setting, follow these steps:
560560

561-
1. In the **host.json** file, under the `extensionBundle` object, add the `extensions` object, which includes the `workflow` and `settings` objects, for example:
561+
1. In the **host.json** file, under the `extensionBundle` object, add the `extensions` object, which includes the `workflow` and `Settings` objects, for example:
562562

563563
```json
564564
{
@@ -569,14 +569,14 @@ To add a host setting, follow these steps:
569569
},
570570
"extensions": {
571571
"workflow": {
572-
"settings": {
572+
"Settings": {
573573
}
574574
}
575575
}
576576
}
577577
```
578578

579-
1. In the `settings` object, add a flat list with the host settings that you want to use for all the workflows in your logic app, whether those workflows run locally or in Azure, for example:
579+
1. In the `Settings` object, add a flat list with the host settings that you want to use for all the workflows in your logic app, whether those workflows run locally or in Azure, for example:
580580

581581
```json
582582
{
@@ -587,7 +587,7 @@ To add a host setting, follow these steps:
587587
},
588588
"extensions": {
589589
"workflow": {
590-
"settings": {
590+
"Settings": {
591591
"Runtime.Trigger.MaximumWaitingRuns": "100"
592592
}
593593
}

0 commit comments

Comments
 (0)