diff --git a/fairmq/options/FairMQParser.cxx b/fairmq/options/FairMQParser.cxx index e588140c..e4948acb 100644 --- a/fairmq/options/FairMQParser.cxx +++ b/fairmq/options/FairMQParser.cxx @@ -221,6 +221,7 @@ namespace helper FairMQChannel commonChannel; commonChannel.UpdateType(q.second.get("type", commonChannel.GetType())); commonChannel.UpdateMethod(q.second.get("method", commonChannel.GetMethod())); + commonChannel.UpdateAddress(q.second.get("address", commonChannel.GetAddress())); commonChannel.UpdateProperty(q.second.get("property", commonChannel.GetProperty())); commonChannel.UpdateSndBufSize(q.second.get("sndBufSize", commonChannel.GetSndBufSize())); commonChannel.UpdateRcvBufSize(q.second.get("rcvBufSize", commonChannel.GetRcvBufSize())); @@ -254,6 +255,7 @@ namespace helper // try to get common properties to use for all subChannels commonChannel.UpdateType(p.second.get("type", commonChannel.GetType())); commonChannel.UpdateMethod(p.second.get("method", commonChannel.GetMethod())); + commonChannel.UpdateAddress(p.second.get("address", commonChannel.GetAddress())); commonChannel.UpdateProperty(p.second.get("property", commonChannel.GetProperty())); commonChannel.UpdateSndBufSize(p.second.get("sndBufSize", commonChannel.GetSndBufSize())); commonChannel.UpdateRcvBufSize(p.second.get("rcvBufSize", commonChannel.GetRcvBufSize())); diff --git a/fairmq/options/FairMQProgOptions.cxx b/fairmq/options/FairMQProgOptions.cxx index f838735e..315d2416 100644 --- a/fairmq/options/FairMQProgOptions.cxx +++ b/fairmq/options/FairMQProgOptions.cxx @@ -35,6 +35,7 @@ FairMQProgOptions::~FairMQProgOptions() int FairMQProgOptions::ParseAll(const int argc, char** argv, bool allowUnregistered) { + LOG(NOLOG) << ""; // init description InitOptionDescription(); // parse command line options