Skip to content

Commit 1d20c8b

Browse files
authored
More removal of EnableWorkerIndexing
1 parent e856c81 commit 1d20c8b

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

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

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,7 @@ As an example, the following code demonstrates how to define a Blob Storage inpu
470470
"Values": {
471471
"FUNCTIONS_WORKER_RUNTIME": "python",
472472
"STORAGE_CONNECTION_STRING": "<AZURE_STORAGE_CONNECTION_STRING>",
473-
"AzureWebJobsStorage": "<azure-storage-connection-string>",
474-
"AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
473+
"AzureWebJobsStorage": "<azure-storage-connection-string>"
475474
}
476475
}
477476
```
@@ -1154,16 +1153,7 @@ def main(req: func.HttpRequest) -> func.HttpResponse:
11541153
logging.info(f'My app setting value:{my_app_setting_value}')
11551154
```
11561155

1157-
For local development, application settings are [maintained in the *local.settings.json* file](functions-develop-local.md#local-settings-file).
1158-
1159-
When you're using the new programming model, enable the following app setting in the *local.settings.json* file, as shown here:
1160-
1161-
```json
1162-
"AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
1163-
```
1164-
1165-
When you're deploying the function, this setting isn't created automatically. You must explicitly create this setting in your function app in Azure for it to run by using the v2 model.
1166-
1156+
For local development, application settings are [maintained in the *local.settings.json* file](functions-develop-local.md#local-settings-file).
11671157
::: zone-end
11681158

11691159
## Python version

0 commit comments

Comments
 (0)