mirror of
https://github.com/ohwgiles/laminar.git
synced 2024-10-27 20:34:20 +00:00
use an empty string for the default node name
This commit is contained in:
parent
1caeeabbfd
commit
50dd7b47af
@ -299,9 +299,9 @@ bool Laminar::loadConfiguration() {
|
|||||||
if(nm.empty()) {
|
if(nm.empty()) {
|
||||||
// add a default node
|
// add a default node
|
||||||
Node node;
|
Node node;
|
||||||
node.name = "default";
|
node.name = "";
|
||||||
node.numExecutors = 6;
|
node.numExecutors = 6;
|
||||||
nm.emplace("default", std::move(node));
|
nm.emplace("", std::move(node));
|
||||||
}
|
}
|
||||||
|
|
||||||
nodes = nm;
|
nodes = nm;
|
||||||
|
Loading…
Reference in New Issue
Block a user