js-sdk
js-sdk copied to clipboard
Add DeadLetter topic support
Describe the proposal
Support DeadLetter Topic in pub/sub. Issue: https://github.com/dapr/dapr/issues/2217
The problem is how to use the attribute to express deadletter topic for V2 routing.
[
{
"topic":"TestTEvent",
"pubsubName":"pubsub",
"routes":{
"default":"event/pubsub/TestTIntegrationEvent/v1",
"rules":[
{
"match":"has(event.routingKey)",
"path":"test"
}
]
},
"deadLetterTopic": "TestdeadLetterTEvent"
}
]