js-sdk icon indicating copy to clipboard operation
js-sdk copied to clipboard

Add DeadLetter topic support

Open shubham1172 opened this issue 3 years ago • 0 comments

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"
    }
]

shubham1172 avatar Jul 12 '22 16:07 shubham1172