Im publishing mqtt messages from machine1 to machine2 through a bridge. On machine1 Im running mosquitto broker and on machine2 Im using rabbitmq mqtt plugin.
Im trying to hold messages in case of network disconnection. When it connects again it should retry sending the messages. I set cleansession to false and QoS at the bridge to 1 However Im not receiving the messages
here is the bridge configuration
connection main
address <ipAddress>:1883
topic # both 1 topic1/ topic2/
cleansession false
try_private false
remote_username <username>
remote_password <password>
any ideas ?