We have an Artemis cluster of two nodes, one live and one backup. I'd like to configure qpid proton for Python, v0.36 to handle fail-over and fail-back.
I create the connection with the IPs of the live and backup brokers: self.container.connect(urls=['10.5.0.3','10.5.0.4], user='admin', password= 'admin') I'm new to working with message brokers. I expect a qpid producer and a qpid consumer to continue sending and receiving messages if the live node goes down (fail-over). If the live node comes up, and the backup node goes down, I expect the producer and consumer to keep working. Either I'm not configuring the server or the client correctly, or I misunderstand how they are supposed to work for fail-over and fail-back. Also, isn't there some mechanism where I can use only the IP of the live broker, and it informs qpid of the IPs of the backup node(s)?
