I only have one consumer connected. With everytime I lose connection and
reconnect, the "number of consumers" increments by 1 (i.e. +1) instead of
just being one (i.e. Number of Consumers: 1). Does it has anything to do
with idle_timeout? Please have a look at the code below. I even tried
appending "wireFormat.maxInactivityDuration=30000" to the failover url but
it did not help. Any help in debugging this further or guidance would be
greatly appreciated!
Thanks! 

class class1 : public proton::messaging_handler {
std::string url;
std::string devQueue;
std::vector<std::string> failovers = {"failover:(amqps://1.2.3.4)"};

public:


class1(const std::string& u, const std::string& devQueue) :
        url(u), devQueue(devQueue) {}

void on_container_start(proton::container& c) override {
    proton::connection_options co;
    proton::reconnect_options ro;
    ro.failover_urls(failovers);
    c.connect(url, co.idle_timeout(proton::duration::SECOND).reconnect(ro));
}

void on_connection_open(proton::connection& c) override {
    c.open_receiver(devQueue);
}

...
};



--
Sent from: http://activemq.2283324.n4.nabble.com/ActiveMQ-User-f2341805.html

Reply via email to