File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -198,17 +198,6 @@ Example Code:
198
198
199
199
### Broker Configuration (RabbitMQ)
200
200
201
- ```
202
- spring:
203
- rabbitmq:
204
- host: 8.8.8.1
205
- port: YYY
206
- username: user
207
- password: pass
208
-
209
- ```
210
-
211
- props format:
212
201
213
202
```
214
203
spring.rabbitmq.host= 8.8.8.1
@@ -218,3 +207,15 @@ spring.rabbitmq.password=pass
218
207
219
208
```
220
209
210
+ ### Retry Strategy Config (RabbitMQ)
211
+
212
+ ```
213
+ app.async.withDLQRetry=true
214
+ app.async.retryDelay=1000
215
+ app.async.maxRetries=10
216
+
217
+ ```
218
+ * withDLQRetry: Wheter to enable or not the new Retry DLQ Strategy
219
+ * retryDelay: Delay retry value in ms
220
+ * maxRetries: Max number of retries in case of error in adition to the one automatic retry per queue.
221
+
You can’t perform that action at this time.
0 commit comments