mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-26 23:24:09 +02:00
Merge pull request #8919 from Icinga/bugfix/idb-del-state-chksm
Icinga DB: HDEL also icinga:checksum:*:state, not only icinga:*:state
This commit is contained in:
commit
5923950e61
@ -1496,7 +1496,10 @@ void IcingaDB::SendConfigDelete(const ConfigObject::Ptr& object)
|
|||||||
GetObjectIdentifier(checkable)
|
GetObjectIdentifier(checkable)
|
||||||
}, Prio::CheckResult);
|
}, Prio::CheckResult);
|
||||||
|
|
||||||
m_Rcon->FireAndForgetQuery({"HDEL", m_PrefixConfigObject + typeName + ":state", objectKey}, Prio::RuntimeStateSync);
|
m_Rcon->FireAndForgetQueries({
|
||||||
|
{"HDEL", m_PrefixConfigObject + typeName + ":state", objectKey},
|
||||||
|
{"HDEL", m_PrefixConfigCheckSum + typeName + ":state", objectKey}
|
||||||
|
}, Prio::RuntimeStateSync);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user