Skip to content

Commit c62e997

Browse files
committed
Merge branch 'app-settings' of https://github.com/ggailey777/azure-docs-pr into app-settings
2 parents 3d9c405 + bd9ed07 commit c62e997

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

articles/app-service/reference-app-settings.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,8 +646,7 @@ The following environment variables are related to [WebJobs](webjobs-create.md).
646646
|-|-|
647647
| `WEBSITE_FUNCTIONS_ARMCACHE_ENABLED` | Set to `0` to disable the functions cache. |
648648
| `WEBSITE_MAX_DYNAMIC_APPLICATION_SCALE_OUT` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
649-
650-
`AzureWebJobsSecretStorageType` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
649+
|`AzureWebJobsSecretStorageType` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
651650
| `FUNCTIONS_EXTENSION_VERSION` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
652651
| `FUNCTIONS_WORKER_RUNTIME` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
653652
| `AzureWebJobsStorage` | [App settings reference for Azure Functions](../azure-functions/functions-app-settings.md) |
@@ -735,4 +734,4 @@ HTTPSCALE_FORWARD_REQUEST
735734
IS_VALID_STAMP_TOKEN
736735
NEEDS_SITE_RESTRICTED_TOKEN
737736
HTTP_X_MS_PRIVATELINK_ID
738-
-->
737+
-->

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ When using app settings, you should be aware of the following considerations:
4141

4242
+ Changing any _read-only_ [App Service application settings](../app-service/reference-app-settings.md#app-environment) can put your function app into an unresponsive state.
4343

44-
+ Take care when updating application settings by using REST APIs, including ARM templates. Because these APIs replace the existing application settings, you must include all existing settings when adding or modifying settings using REST APIs or ARM templates. When possible use Azure CLI or Azure PowerShell to programmatically work with application settings. For more information, see [Work with application settings](./functions-how-to-use-azure-function-app-settings.md#work-with-application-settings).
44+
+ Take care when updating application settings by using REST APIs, including ARM templates. Because these APIs replace the existing application settings, you must include all existing settings when adding or modifying settings using REST APIs or ARM templates. When possible use Azure CLI or Azure PowerShell to programmatically work with application settings. For more information, see [Work with application settings](./functions-how-to-use-azure-function-app-settings.md#settings).
4545

4646
## APPINSIGHTS_INSTRUMENTATIONKEY
4747

@@ -378,7 +378,7 @@ With this setting enabled, you can use the [DOCKER_SHM_SIZE](#docker_shm_size) s
378378

379379
## JAVA_OPTS
380380

381-
Used to customize the Java virtual machine (JVM) used to run your Java functions. In the Consumption plan, you must also add the [`WEBSITE_USE_PLACEHOLDER`](#website-use-placeholder) setting with a value of `0`, which can impact cold start. For more information, see [Customize JVM](functions-reference-java.md#customize-jvm).
381+
Used to customize the Java virtual machine (JVM) used to run your Java functions. In the Consumption plan, you must also add the [`WEBSITE_USE_PLACEHOLDER`](#website_use_placeholder) setting with a value of `0`, which can impact cold start. For more information, see [Customize JVM](functions-reference-java.md#customize-jvm).
382382

383383
## MDMaxBackgroundUpgradePeriod
384384

articles/azure-functions/functions-bindings-azure-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Support for the SQL bindings extension is available in the 1.11.3b1 version of t
130130
azure-functions==1.11.3b1
131131
```
132132

133-
Following setting the library version, update your application settings to [isolate the dependencies](./functions-app-settings.md#python_isolate_worker_dependencies-preview) by adding `PYTHON_ISOLATE_WORKER_DEPENDENCIES` with the value `1` to your application settings. Locally, this is set in the `local.settings.json` file as seen below:
133+
Following setting the library version, update your application settings to [isolate the dependencies](./functions-app-settings.md#python_isolate_worker_dependencies) by adding `PYTHON_ISOLATE_WORKER_DEPENDENCIES` with the value `1` to your application settings. Locally, this is set in the `local.settings.json` file as seen below:
134134

135135
```json
136136
"PYTHON_ISOLATE_WORKER_DEPENDENCIES": "1"

articles/azure-functions/functions-reference-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ The Azure Functions Python worker requires a specific set of libraries. You can
12611261
> If your function app's *requirements.txt* file contains an `azure-functions-worker` entry, remove it. The functions worker is automatically managed by the Azure Functions platform, and we regularly update it with new features and bug fixes. Manually installing an old version of worker in the *requirements.txt* file might cause unexpected issues.
12621262
12631263
> [!NOTE]
1264-
> If your package contains certain libraries that might collide with worker's dependencies (for example, protobuf, tensorflow, or grpcio), configure [`PYTHON_ISOLATE_WORKER_DEPENDENCIES`](functions-app-settings.md#python_isolate_worker_dependencies-preview) to `1` in app settings to prevent your application from referring to worker's dependencies. This feature is in preview.
1264+
> If your package contains certain libraries that might collide with worker's dependencies (for example, protobuf, tensorflow, or grpcio), configure [`PYTHON_ISOLATE_WORKER_DEPENDENCIES`](functions-app-settings.md#python_isolate_worker_dependencies) to `1` in app settings to prevent your application from referring to worker's dependencies. This feature is in preview.
12651265
12661266
### The Azure Functions Python library
12671267

articles/azure-functions/recover-python-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Example error logs:
250250
251251
You can mitigate this issue in either of two ways:
252252
253-
* Set the application setting [PYTHON_ISOLATE_WORKER_DEPENDENCIES](functions-app-settings.md#python_isolate_worker_dependencies-preview) to a value of `1`.
253+
* Set the application setting [PYTHON_ISOLATE_WORKER_DEPENDENCIES](functions-app-settings.md#python_isolate_worker_dependencies) to a value of `1`.
254254
255255
* Pin Protobuf to a non-4.x.x. version, as in the following example:
256256

0 commit comments

Comments
 (0)