Skip to content

Commit 7fb0747

Browse files
Merge pull request #214947 from ggailey777/ggailey777-patch-1
Revert `AzureFunctionsWebHost__hostid` back to lowercase
2 parents fd0d13b + f08d88d commit 7fb0747

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/azure-functions/functions-app-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ In version 2.x and later versions of the Functions runtime, configures app behav
8787

8888
In version 2.x and later versions of the Functions runtime, application settings can override [host.json](functions-host-json.md) settings in the current environment. These overrides are expressed as application settings named `AzureFunctionsJobHost__path__to__setting`. For more information, see [Override host.json values](functions-host-json.md#override-hostjson-values).
8989

90-
## AzureFunctionsWebHost__hostId
90+
## AzureFunctionsWebHost__hostid
9191

9292
Sets the host ID for a given function app, which should be a unique ID. This setting overrides the automatically generated host ID value for your app. Use this setting only when you need to prevent host ID collisions between function apps that share the same storage account.
9393

9494
A host ID must be between 1 and 32 characters, contain only lowercase letters, numbers, and dashes, not start or end with a dash, and not contain consecutive dashes. An easy way to generate an ID is to take a GUID, remove the dashes, and make it lower case, such as by converting the GUID `1835D7B5-5C98-4790-815D-072CC94C6F71` to the value `1835d7b55c984790815d072cc94c6f71`.
9595

9696
|Key|Sample value|
9797
|---|------------|
98-
|AzureFunctionsWebHost__hostId|`myuniquefunctionappname123456789`|
98+
|AzureFunctionsWebHost__hostid|`myuniquefunctionappname123456789`|
9999

100100
For more information, see [Host ID considerations](storage-considerations.md#host-id-considerations).
101101

articles/azure-functions/storage-considerations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ You can use the following strategies to avoid host ID collisions:
8989
9090
### Override the host ID
9191

92-
You can explicitly set a specific host ID for your function app in the application settings by using the `AzureFunctionsWebHost__hostId` setting. For more information, see [AzureFunctionsWebHost__hostId](functions-app-settings.md#azurefunctionswebhost__hostid).
92+
You can explicitly set a specific host ID for your function app in the application settings by using the `AzureFunctionsWebHost__hostid` setting. For more information, see [AzureFunctionsWebHost__hostid](functions-app-settings.md#azurefunctionswebhost__hostid).
9393

9494
When the collision occurs between slots, you may need to mark this setting as a slot setting. To learn how to create app settings, see [Work with application settings](functions-how-to-use-azure-function-app-settings.md#settings).
9595

0 commit comments

Comments
 (0)