| 3137 | } |
| 3138 | |
| 3139 | void IcingaDB::CommandEnvChangedHandler(const Command::Ptr& command, const Dictionary::Ptr& oldValues, const Dictionary::Ptr& newValues) { |
| 3140 | const auto& cmdRedisKeys = GetCmdEnvArgKeys(command->GetReflectionType()); |
| 3141 | for (const IcingaDB::Ptr& rw : ConfigType::GetObjectsByType<IcingaDB>()) { |
| 3142 | rw->SendCommandEnvChanged(command, cmdRedisKeys, oldValues, newValues); |
| 3143 | } |
| 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()); |
nothing calls this directly
no test coverage detected