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
@ggailey777 - there was an issue opened recently asking for clarification on how binding-related host.json properties are applied to a function app with multiple functions of a given binding: Azure/azure-functions-host#5417
I also noticed that the local.setting.json section was a little misleading - local.settings.json is the local equivalent of app settings, and not host.json.
Would love help with wording :)!
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-host-json.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,9 +16,9 @@ The *host.json* metadata file contains global configuration options that affect
16
16
> [!NOTE]
17
17
> This article is for Azure Functions 2.x and later versions. For a reference of host.json in Functions 1.x, see [host.json reference for Azure Functions 1.x](functions-host-json-v1.md).
18
18
19
-
Other function app configuration options are managed in your [app settings](functions-app-settings.md).
19
+
Other function app configuration options are managed in your [app settings](functions-app-settings.md) (for deployed apps) or your [local.settings.json](functions-run-local.md#local-settings-file) file (for local development).
20
20
21
-
Some host.json settings are only used when running locally in the [local.settings.json](functions-run-local.md#local-settings-file) file.
21
+
Configurations in host.json related to bindings are applied equally to each function in the function app.
0 commit comments