From f05118f4ebc1a47f64e096f6b8c5171bede6196b Mon Sep 17 00:00:00 2001 From: mkrzewic Date: Mon, 18 Jun 2018 12:43:41 +0200 Subject: [PATCH] Make ";" the separateor in multi-point channel config This is to avoid parsing problems using "," in e.g. multi-point configuration using Suboptparser --- fairmq/FairMQChannel.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fairmq/FairMQChannel.cxx b/fairmq/FairMQChannel.cxx index d4078465c..79b7bbb9e 100644 --- a/fairmq/FairMQChannel.cxx +++ b/fairmq/FairMQChannel.cxx @@ -499,7 +499,7 @@ bool FairMQChannel::ValidateChannel() else { vector endpoints; - boost::algorithm::split(endpoints, fAddress, boost::algorithm::is_any_of(",")); + boost::algorithm::split(endpoints, fAddress, boost::algorithm::is_any_of(";")); for (const auto endpoint : endpoints) { string address;