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:
198198
199199### Broker Configuration (RabbitMQ)
200200
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:
212201
213202```
214203spring.rabbitmq.host= 8.8.8.1
@@ -218,3 +207,15 @@ spring.rabbitmq.password=pass
218207
219208```
220209
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