--
To learn more about MQTT please visit http://mqtt.org
---
You received this message because you are subscribed to the Google Groups "MQ Telemetry Transport" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mqtt+uns...@googlegroups.com.
To post to this group, send email to mq...@googlegroups.com.
Visit this group at http://groups.google.com/group/mqtt.
For more options, visit https://groups.google.com/groups/opt_out.
Hi Daniel,
That is not a bug with rsmb but is a result of your bridge configuration.
Your config is publishing all messages on /tst/# to the remote broker. It is also subscribed to /tst/# on the remote broker.
When you publish a message locally it is received by local subscribers and also sent over the bridge. The message is published on the remote broker and, as your bridge is subscribed to the topic, it receives a copy - hence what you perceive as a duplicate.
This is where you should make use of the local/remote prefix options to ensure you don't get this overlap of topics.
Nick