From 291d00c73f717cd0d279b37a3b521bd32a217afc Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Mon, 7 Jan 2019 10:31:08 +0100 Subject: [PATCH] Fix regression with ignored rateLogging channel argument --- fairmq/options/FairMQParser.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/fairmq/options/FairMQParser.cxx b/fairmq/options/FairMQParser.cxx index 70c91b5e..b9af5968 100644 --- a/fairmq/options/FairMQParser.cxx +++ b/fairmq/options/FairMQParser.cxx @@ -136,6 +136,7 @@ void ChannelParser(const boost::property_tree::ptree& tree, FairMQChannelMap& ch commonChannel.UpdateSndKernelSize(q.second.get("sndKernelSize", commonChannel.GetSndKernelSize())); commonChannel.UpdateRcvKernelSize(q.second.get("rcvKernelSize", commonChannel.GetRcvKernelSize())); commonChannel.UpdateLinger(q.second.get("linger", commonChannel.GetLinger())); + commonChannel.UpdateRateLogging(q.second.get("rateLogging", commonChannel.GetRateLogging())); commonChannel.UpdatePortRangeMin(q.second.get("portRangeMin", commonChannel.GetPortRangeMin())); commonChannel.UpdatePortRangeMax(q.second.get("portRangeMax", commonChannel.GetPortRangeMax())); commonChannel.UpdateAutoBind(q.second.get("autoBind", commonChannel.GetAutoBind()));