Skip to content

Commit 4bfe73d

Browse files
authored
Update README.md
1 parent 59f0ba6 commit 4bfe73d

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

README.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff 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
```
214203
spring.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+

0 commit comments

Comments
 (0)