mirror of
https://github.com/Icinga/icinga2.git
synced 2025-04-08 17:05:25 +02: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
@ -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…
x
Reference in New Issue
Block a user