mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-13 08:41:16 +00:00
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:
parent
21419adb40
commit
f05118f4eb
|
@ -499,7 +499,7 @@ bool FairMQChannel::ValidateChannel()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
vector<string> endpoints;
|
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)
|
for (const auto endpoint : endpoints)
|
||||||
{
|
{
|
||||||
string address;
|
string address;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user