Author: kgiusti Date: Tue Nov 15 23:44:18 2011 New Revision: 1202473 URL: http://svn.apache.org/viewvc?rev=1202473&view=rev Log: QPID-3615: merge fix to 0.14
Modified: qpid/branches/0.14/qpid/cpp/src/qpid/broker/Broker.cpp Modified: qpid/branches/0.14/qpid/cpp/src/qpid/broker/Broker.cpp URL: http://svn.apache.org/viewvc/qpid/branches/0.14/qpid/cpp/src/qpid/broker/Broker.cpp?rev=1202473&r1=1202472&r2=1202473&view=diff ============================================================================== --- qpid/branches/0.14/qpid/cpp/src/qpid/broker/Broker.cpp (original) +++ qpid/branches/0.14/qpid/cpp/src/qpid/broker/Broker.cpp Tue Nov 15 23:44:18 2011 @@ -338,6 +338,13 @@ Broker::Broker(const Broker::Options& co } else if (conf.knownHosts != knownHostsNone) { knownBrokers.push_back(Url(conf.knownHosts)); } + + // check for and warn if deprecated features have been configured + if (conf.maxSessionRate) { + QPID_LOG(warning, "The 'max-session-rate' feature will be removed in a future release of QPID." + " Queue-based flow control should be used instead."); + } + } catch (const std::exception& /*e*/) { finalize(); throw; --------------------------------------------------------------------- Apache Qpid - AMQP Messaging Implementation Project: http://qpid.apache.org Use/Interact: mailto:commits-subscr...@qpid.apache.org