mirror of https://github.com/dapr/docs.git
Fixing concurrency mode setting name: concurrency -> concurrencyMode (#1236)
This commit is contained in:
parent
9f93fd0ab8
commit
f493f1e285
|
@ -33,7 +33,7 @@ spec:
|
|||
value: "0"
|
||||
- name: reconnectWait
|
||||
value: "0"
|
||||
- name: concurrency
|
||||
- name: concurrencyMode
|
||||
value: parallel
|
||||
```
|
||||
{{% alert title="Warning" color="warning" %}}
|
||||
|
@ -52,7 +52,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr
|
|||
| requeueInFailure | N | Whether or not to requeue when sending a [negative acknolwedgement](https://www.rabbitmq.com/nack.html) in case of a failure. Defaults to `"false"` | `"true"`, `"false"`
|
||||
| prefetchCount | N | Number of messages to [prefecth](https://www.rabbitmq.com/consumer-prefetch.html). Consider changing this to a non-zero value for production environments. Defaults to `"0"`, which means that all available messages will be pre-fetched. | `"2"`
|
||||
| reconnectWait | N | How long to wait (in seconds) before reconnecting if a connection failure occurs | `"0"`
|
||||
| concurrency | N | `paralell` is the default, and allows processing multiple messages in paralell (limited by the `app-max-concurrency` annotation, if configured). Set to `single` to disable paralell processing. In most situations there's no reason to change this. | `paralell`, `single`
|
||||
| concurrencyMode | N | `paralell` is the default, and allows processing multiple messages in paralell (limited by the `app-max-concurrency` annotation, if configured). Set to `single` to disable paralell processing. In most situations there's no reason to change this. | `paralell`, `single`
|
||||
|
||||
|
||||
## Create a RabbitMQ server
|
||||
|
|
Loading…
Reference in New Issue