Skip to content

Commit 136bf36

Browse files
authored
Fix WebPubSub README config key name (Azure#25508)
1 parent 8ab1ce2 commit 136bf36

File tree

1 file changed

+2
-2
lines changed
  • sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub

1 file changed

+2
-2
lines changed

sdk/webpubsub/Microsoft.Azure.WebJobs.Extensions.WebPubSub/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ You can find the **Keys** for you Azure Web PubSub service in the [Azure Portal]
3030

3131
The `AzureWebJobsStorage` connection string is used to preserve the processing checkpoint information as required refer to [Storage considerations](https://docs.microsoft.com/azure/azure-functions/storage-considerations#storage-account-requirements)
3232

33-
For the local development use the `local.settings.json` file to store the connection string, `<connection_name>` can be set to `WebPubSubConnectionString` as default supported in the extension, or you can set customized names by mapping it with `Connection = <connection_name>` in function binding attributes:
33+
For the local development use the `local.settings.json` file to store the connection string, `<connection-string>` can be set to `WebPubSubConnectionString` as default supported in the extension, or you can set customized names by mapping it with `Connection = <connection-string>` in function binding attributes:
3434

3535
```json
3636
{
3737
"Values": {
3838
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
39-
"<connection_name>": "Endpoint=https://<webpubsub-name>.webpubsub.azure.com;AccessKey=<access-key>;Version=1.0;"
39+
"<connection-string>": "Endpoint=https://<webpubsub-name>.webpubsub.azure.com;AccessKey=<access-key>;Version=1.0;"
4040
}
4141
}
4242
```

0 commit comments

Comments
 (0)