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
@@ -503,7 +503,7 @@ To add a setting, follow these steps:
503
503
504
504
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.
505
505
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:
507
507
508
508
```json
509
509
{
@@ -514,14 +514,14 @@ To add a setting, follow these steps:
514
514
},
515
515
"extensions": {
516
516
"workflow": {
517
-
"settings": {
517
+
"Settings": {
518
518
}
519
519
}
520
520
}
521
521
}
522
522
```
523
523
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:
525
525
526
526
```json
527
527
{
@@ -532,7 +532,7 @@ To add a setting, follow these steps:
532
532
},
533
533
"extensions": {
534
534
"workflow": {
535
-
"settings": {
535
+
"Settings": {
536
536
"Runtime.Trigger.MaximumWaitingRuns": "100"
537
537
}
538
538
}
@@ -552,13 +552,13 @@ To review the host settings for your logic app in Visual Studio Code, follow the
552
552
553
553
1. In your logic app project, at the root project level, find and open the **host.json** file.
554
554
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.
556
556
557
557
For more information about host settings, see [Reference for host settings - host.json](#reference-host-json).
558
558
559
559
To add a host setting, follow these steps:
560
560
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:
562
562
563
563
```json
564
564
{
@@ -569,14 +569,14 @@ To add a host setting, follow these steps:
569
569
},
570
570
"extensions": {
571
571
"workflow": {
572
-
"settings": {
572
+
"Settings": {
573
573
}
574
574
}
575
575
}
576
576
}
577
577
```
578
578
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:
580
580
581
581
```json
582
582
{
@@ -587,7 +587,7 @@ To add a host setting, follow these steps:
0 commit comments