Skip to content

Commit

Permalink
Fix regression with ignored rateLogging channel argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx authored and dennisklein committed Jan 7, 2019
1 parent 4dc37ef commit 291d00c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fairmq/options/FairMQParser.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ void ChannelParser(const boost::property_tree::ptree& tree, FairMQChannelMap& ch
commonChannel.UpdateSndKernelSize(q.second.get<int>("sndKernelSize", commonChannel.GetSndKernelSize()));
commonChannel.UpdateRcvKernelSize(q.second.get<int>("rcvKernelSize", commonChannel.GetRcvKernelSize()));
commonChannel.UpdateLinger(q.second.get<int>("linger", commonChannel.GetLinger()));
commonChannel.UpdateRateLogging(q.second.get<int>("rateLogging", commonChannel.GetRateLogging()));
commonChannel.UpdatePortRangeMin(q.second.get<int>("portRangeMin", commonChannel.GetPortRangeMin()));
commonChannel.UpdatePortRangeMax(q.second.get<int>("portRangeMax", commonChannel.GetPortRangeMax()));
commonChannel.UpdateAutoBind(q.second.get<bool>("autoBind", commonChannel.GetAutoBind()));
Expand Down

0 comments on commit 291d00c

Please sign in to comment.