From 750e64b974eaedd7571fdd65da295020a50b32e8 Mon Sep 17 00:00:00 2001 From: Noah Hilverling Date: Fri, 8 Oct 2021 12:06:14 +0200 Subject: [PATCH] Icinga DB: Remove unused Redis key 'icinga:zone:parent' --- lib/icingadb/icingadb-objects.cpp | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/lib/icingadb/icingadb-objects.cpp b/lib/icingadb/icingadb-objects.cpp index c8d7477c2..40cd1da09 100644 --- a/lib/icingadb/icingadb-objects.cpp +++ b/lib/icingadb/icingadb-objects.cpp @@ -538,8 +538,6 @@ std::vector IcingaDB::GetTypeOverwriteKeys(const String& type) keys.emplace_back(m_PrefixConfigObject + type + ":override:include"); keys.emplace_back(m_PrefixConfigObject + type + ":override:exclude"); keys.emplace_back(m_PrefixConfigObject + type + ":range"); - } else if (type == "zone") { - keys.emplace_back(m_PrefixConfigObject + type + ":parent"); } else if (type == "notification") { keys.emplace_back(m_PrefixConfigObject + type + ":user"); keys.emplace_back(m_PrefixConfigObject + type + ":usergroup"); @@ -572,8 +570,6 @@ std::vector IcingaDB::GetTypeDumpSignalKeys(const Type::Ptr& type) keys.emplace_back(m_PrefixConfigObject + lcType + ":override:include"); keys.emplace_back(m_PrefixConfigObject + lcType + ":override:exclude"); keys.emplace_back(m_PrefixConfigObject + lcType + ":range"); - } else if (type == Zone::TypeInstance) { - keys.emplace_back(m_PrefixConfigObject + lcType + ":parent"); } else if (type == Notification::TypeInstance) { keys.emplace_back(m_PrefixConfigObject + lcType + ":user"); keys.emplace_back(m_PrefixConfigObject + lcType + ":usergroup"); @@ -823,32 +819,6 @@ void IcingaDB::InsertObjectDependencies(const ConfigObject::Ptr& object, const S return; } - if (type == Zone::TypeInstance) { - Zone::Ptr zone = static_pointer_cast(object); - - Array::Ptr parents(new Array); - auto parentsRaw (zone->GetAllParentsRaw()); - - parents->Reserve(parentsRaw.size()); - - auto& parnts (hMSets[m_PrefixConfigObject + typeName + ":parent"]); - - for (auto& parent : parentsRaw) { - String id = HashValue(new Array(Prepend(env, Prepend(GetObjectIdentifiersWithoutEnv(parent), GetObjectIdentifiersWithoutEnv(object))))); - parnts.emplace_back(id); - Dictionary::Ptr data = new Dictionary({{"zone_id", objectKey}, {"environment_id", m_EnvironmentId}, {"parent_id", GetObjectIdentifier(parent)}}); - parnts.emplace_back(JsonEncode(data)); - - if (runtimeUpdate) { - AddObjectDataToRuntimeUpdates(runtimeUpdates, id, m_PrefixConfigObject + typeName + ":parent", data); - } - - parents->Add(GetObjectIdentifier(parent)); - } - - return; - } - if (type == User::TypeInstance) { User::Ptr user = static_pointer_cast(object);