Fix error loading arrangements #217

Merged
bustikiller merged 1 commits from fix/error-loading-arrangements into main 2025-01-23 20:49:02 +00:00

View File

@ -17,7 +17,7 @@ class AffinityGroupsHierarchy < Array
hydrate(group) hydrate(group)
end end
load_discomforts discomforts
freeze freeze
end end
@ -58,8 +58,8 @@ class AffinityGroupsHierarchy < Array
private private
def load_discomforts def discomforts
@load_discomforts ||= GroupAffinity.pluck(:group_a_id, :group_b_id, @discomforts ||= GroupAffinity.pluck(:group_a_id, :group_b_id,
:discomfort).each_with_object({}) do |(id_a, id_b, discomfort), acc| :discomfort).each_with_object({}) do |(id_a, id_b, discomfort), acc|
acc[uuid_to_int(id_a) + uuid_to_int(id_b)] = discomfort acc[uuid_to_int(id_a) + uuid_to_int(id_b)] = discomfort
end end