Update Azure Service Bus Binding queue name param

Queue names are always forced to lowercase in Azure Service Bus. This
behavior should be documented.

https://github.com/dapr/docs/issues/1839
This commit is contained in:
Hal Spang 2021-10-08 17:23:24 -07:00
parent b2291f6135
commit 49128bc142
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
| Field | Required | Binding support | Details | Example |
|--------------------|:--------:|------------|-----|---------|
| connectionString | Y | Input/Output | The Service Bus connection string | `"Endpoint=sb://************"` |
| queueName | Y | Input/Output | The Service Bus queue name | `"queuename"` |
| queueName | Y | Input/Output | The Service Bus queue name. Queue names are case-insensitive and will always be forced to lowercase. | `"queuename"` |
| ttlInSeconds | N | Output | Parameter to set the default message [time to live](https://docs.microsoft.com/azure/service-bus-messaging/message-expiration). If this parameter is omitted, messages will expire after 14 days. See [also](#specifying-a-ttl-per-message) | `"60"` |
## Binding support