Skip to content

Commit 6c71290

Browse files
fix: Update AzureWebJobsStorage parameter in local.settings.json.sample and documentation
1 parent f39cfab commit 6c71290

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

code/backend/batch/local.settings.json.sample

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"IsEncrypted": false,
33
"Values": {
44
"FUNCTIONS_WORKER_RUNTIME": "python",
5-
"AzureWebJobsStorage": "",
5+
"AzureWebJobsStorage__accountName": "",
66
"MyBindingConnection": "",
77
"AzureWebJobs.HttpExample.Disabled": "true"
88
},
@@ -11,4 +11,4 @@
1111
"CORS": "*",
1212
"CORSCredentials": false
1313
}
14-
}
14+
}

docs/LOCAL_DEPLOYMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ poetry run func start
207207
Or use the [Azure Functions VS Code extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurefunctions).
208208

209209
#### Debugging the batch processing functions locally
210-
Rename the file `local.settings.json.sample` in the `batch` folder to `local.settings.json` and update the `AzureWebJobsStorage` value with the storage account connection string.
210+
Rename the file `local.settings.json.sample` in the `batch` folder to `local.settings.json` and update the `AzureWebJobsStorage__accountName` value with the storage account name.
211211

212212
Copy the .env file from [previous section](#local-debugging) to the `batch` folder.
213213

@@ -287,7 +287,7 @@ Execute the above [shell command](#L81) to run the function locally. You may nee
287287
|AZURE_SPEECH_SERVICE_KEY | | The key of the Azure Speech service|
288288
|AZURE_SPEECH_SERVICE_NAME | | The name of the Azure Speech service|
289289
|AZURE_SPEECH_SERVICE_REGION | | The region (location) of the Azure Speech service|
290-
|AzureWebJobsStorage||The connection string to the Azure Blob Storage for the Azure Functions Batch processing|
290+
|AzureWebJobsStorage__accountName||The name of the Azure Blob Storage account for the Azure Functions Batch processing|
291291
|BACKEND_URL||The URL for the Backend Batch Azure Function. Use http://localhost:7071 for local execution|
292292
|CONVERSATION_FLOW | custom | Chat conversation type: custom or byod (Bring Your Own Data)|
293293
|DATABASE_TYPE | PostgreSQL | The type of database to deploy (cosmos or postgres)|

0 commit comments

Comments
 (0)