Skip to content

Commit

Permalink
Make ";" the separateor in multi-point channel config
Browse files Browse the repository at this point in the history
This is to avoid parsing problems using "," in e.g. multi-point configuration using Suboptparser
  • Loading branch information
mkrzewic authored and MohammadAlTurany committed Jun 18, 2018
1 parent 21419ad commit f05118f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fairmq/FairMQChannel.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f05118f

Please sign in to comment.