| 3144 | } |
| 3145 | |
| 3146 | void IcingaDB::CommandArgumentsChangedHandler(const Command::Ptr& command, const Dictionary::Ptr& oldValues, const Dictionary::Ptr& newValues) { |
| 3147 | const auto& cmdRedisKeys = GetCmdEnvArgKeys(command->GetReflectionType()); |
| 3148 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3149 | rw->SendCommandArgumentsChanged(command, cmdRedisKeys, oldValues, newValues); |
| 3150 | } |
| 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>()) { |
nothing calls this directly
no test coverage detected