mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-09 00:32:12 -04:00
Make globals.Internal values non-const by default
That namespace is internal anyway. Previous commit, icinga2 console: Error: Constants must not be removed. This commit fixes it.
This commit is contained in:
parent
02df94a46a
commit
683095a165
1 changed files with 1 additions and 1 deletions
|
|
@ -36,7 +36,7 @@ INITIALIZE_ONCE_WITH_PRIORITY([]() {
|
|||
l_StatsNS = new Namespace(true);
|
||||
globalNS->Set("StatsFunctions", l_StatsNS, true);
|
||||
|
||||
globalNS->Set("Internal", new Namespace(true), true);
|
||||
globalNS->Set("Internal", new Namespace(), true);
|
||||
}, InitializePriority::CreateNamespaces);
|
||||
|
||||
INITIALIZE_ONCE_WITH_PRIORITY([]() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue