I’m trying to route a message to another stream by using route_to_stream pipeline function.
But this pipeline is activated as decorator in a dashboard.
Is it the reason why the message rooting is not working?
If yes, that is to say that functions that are modifying a message are limited when used as decorator?
all changes done in a processing pipeline that is used as decorator are not permanent. That pipeline runs when the the message is displayed and does not make any permanent changes.
Routing of messages is only possible during the processing. That is why this does not work.