Skip to content

Commit

Permalink
Add missing channel update handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
rbx authored and dennisklein committed Oct 31, 2018
1 parent cbab764 commit 3561255
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions fairmq/options/FairMQProgOptions.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,18 @@ int FairMQProgOptions::UpdateChannelValue(const string& channelName, int index,
return 0;
}

if (member == "sndKernelSize")
{
fFairMQChannelMap.at(channelName).at(index).UpdateSndKernelSize(val);
return 0;
}

if (member == "rcvKernelSize")
{
fFairMQChannelMap.at(channelName).at(index).UpdateRcvKernelSize(val);
return 0;
}

if (member == "linger")
{
fFairMQChannelMap.at(channelName).at(index).UpdateLinger(val);
Expand Down

0 comments on commit 3561255

Please sign in to comment.