Skip to content

Commit 7282fe1

Browse files
authored
Update functions-app-settings.md
I believe the wrong OS was references here, and that colon (:) is only supported on Windows, (as it is interpreted by bash as a delimiter on a Linux host trying to set the env var) Not using colon in things on Linux is also referenced in: https://github.com/Azure/azure-functions-host/wiki/Host-IDs microsoft/azure-pipelines-tasks#12376
1 parent 8999dd0 commit 7282fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ When using app settings, you should be aware of the following considerations:
2222

2323
+ Changes to function app settings require your function app to be restarted.
2424

25-
+ In setting names, double-underscore (`__`) and colon (`:`) are considered reserved values. Double-underscores are interpreted as hierarchical delimiters on both Windows and Linux, and colons are interpreted in the same way only on Linux. For example, the setting `AzureFunctionsWebHost__hostid=somehost_123456` would be interpreted as the following JSON object:
25+
+ In setting names, double-underscore (`__`) and colon (`:`) are considered reserved values. Double-underscores are interpreted as hierarchical delimiters on both Windows and Linux, and colons are interpreted in the same way only on Windows. For example, the setting `AzureFunctionsWebHost__hostid=somehost_123456` would be interpreted as the following JSON object:
2626

2727
```json
2828
"AzureFunctionsWebHost": {

0 commit comments

Comments
 (0)