mirror of https://github.com/Icinga/icinga2.git
Ignore the .timestamp file when determining whether the zone config has changed (second attempt)
refs #11014
This commit is contained in:
parent
12b5e332e4
commit
e7a1c83004
|
@ -105,11 +105,9 @@ bool ApiListener::UpdateConfigDir(const ConfigDirInformation& oldConfigInfo, con
|
||||||
{
|
{
|
||||||
ObjectLock olock(newConfig);
|
ObjectLock olock(newConfig);
|
||||||
BOOST_FOREACH(const Dictionary::Pair& kv, newConfig) {
|
BOOST_FOREACH(const Dictionary::Pair& kv, newConfig) {
|
||||||
if (Utility::Match("*/.timestamp", kv.first))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (oldConfig->Get(kv.first) != kv.second) {
|
if (oldConfig->Get(kv.first) != kv.second) {
|
||||||
configChange = true;
|
if (!Utility::Match("*/.timestamp", kv.first))
|
||||||
|
configChange = true;
|
||||||
|
|
||||||
String path = configDir + "/" + kv.first;
|
String path = configDir + "/" + kv.first;
|
||||||
Log(LogInformation, "ApiListener")
|
Log(LogInformation, "ApiListener")
|
||||||
|
|
Loading…
Reference in New Issue