pipeline only works on “all messages” stream but not on other streams. What could be the reason?
I have a simple one stage pipeline with only one simple rule as following
rule "pipeline tester"
when
true
then
rename_field(old_field:"source", new_field:"origin");
end
When I connect this pipeline to all message it works but when I connect it to the new stream I’ve created it stops working and throughput remains 0.
what am I missing?