mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-12-15 07:20:17 +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:
committed by
Mohammad Al-Turany
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;
|
||||||
|
|||||||
Reference in New Issue
Block a user