ngiind
ngiind
Could the source or subject attributes of the cloudevent be used?
It could be added to the gloud event from the python SDK, without ant updates to the runtime, no? From the request.topic property? ``` def OnTopicEvent(self, request, context): """Subscribes events...
@berndverst when is the source not Dapr? Maybe the topic does not belong in the cloud event, and should instead be a separate parameter for the TopicSubscribeCallable? The MQTT Cloud...
@berndverst: I think this seems like an ok solution, considering that we need to be backwards-compatible. This should be an issue in the other SDKs as well, no? Maybe we...
Sounds like a good plan @berndverst. How do we synchronize with the other SDKs? I'm a bit of a neebie, sorry :).
Ok. Thanks! Shall I raise the issue in dapr/dapr?
I agree that the Go SDK and Python SDK should work the same way. I will add a coment to the main tracking issue.
Nudging this. I can help implement it.
Thank you, @berndverst !
What I want to be able to do is to have multiple subscriptions on different wildcard topics in the same dapr app. I have used `disable_topic_validation` to make wildcard subscriptions...