Make ";" the separateor in multi-point channel config

This is to avoid parsing problems using "," in e.g. multi-point configuration using Suboptparser
This commit is contained in:
mkrzewic 2018-06-18 12:43:41 +02:00 committed by Mohammad Al-Turany
parent 21419adb40
commit f05118f4eb

View File

@ -499,7 +499,7 @@ bool FairMQChannel::ValidateChannel()
else
{
vector<string> 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;