Adding a note on default redis pubsub redelivery

https://github.com/dapr/dapr/issues/3481
This commit is contained in:
tstojecki 2021-07-27 09:43:18 +02:00 committed by GitHub
parent b03e4e8fc9
commit 98bcb0e26d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -416,6 +416,8 @@ app.post('/dsstatus', (req, res) => {
{{< /tabs >}}
Some pubsub components (e.g.: Redis) will redeliver a message if a response is not sent back within a specified time window. For redis, the default is 60 sec and can be configured through the processingTimeout setting in component's meta or set to 0 to disable this behavior.
## (Optional) Step 5: Publishing a topic with code
{{< tabs Node PHP>}}