| 3151 | } |
| 3152 | |
| 3153 | void IcingaDB::CustomVarsChangedHandler(const ConfigObject::Ptr& object, const Dictionary::Ptr& oldValues, const Dictionary::Ptr& newValues) { |
| 3154 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3155 | rw->SendCustomVarsChanged(object, oldValues, newValues); |
| 3156 | } |
| 3157 | } |
| 3158 | |
| 3159 | void IcingaDB::DeleteRelationship(const String& id, RedisConnection::QueryArg redisObjKey, RedisConnection::QueryArg redisChecksumKey) { |
| 3160 | Log(LogNotice, "IcingaDB") |
nothing calls this directly
no test coverage detected