mirror of
https://github.com/lubosz/overte.git
synced 2025-08-08 04:08:13 +02:00
pools are allowed to have dashes
This commit is contained in:
parent
cf05600d73
commit
a90ca59027
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ void DomainServer::createStaticAssignmentsForTypeGivenConfigString(Assignment::T
|
||||||
|
|
||||||
QStringList multiConfigList = configString.split(";", QString::SkipEmptyParts);
|
QStringList multiConfigList = configString.split(";", QString::SkipEmptyParts);
|
||||||
|
|
||||||
const QString ASSIGNMENT_CONFIG_POOL_REGEX = "--pool\\s*(\\w+)";
|
const QString ASSIGNMENT_CONFIG_POOL_REGEX = "--pool\\s*([\\w-]+)";
|
||||||
QRegExp poolRegex(ASSIGNMENT_CONFIG_POOL_REGEX);
|
QRegExp poolRegex(ASSIGNMENT_CONFIG_POOL_REGEX);
|
||||||
|
|
||||||
// read each config to a payload for this type of assignment
|
// read each config to a payload for this type of assignment
|
||||||
|
|
Loading…
Reference in a new issue