Fix error loading arrangements
Some checks failed
Add copyright notice / copyright_notice (pull_request) Failing after 1m42s
Check usage of free licenses / check-licenses (pull_request) Failing after 1m49s
Run unit tests / unit_tests (pull_request) Successful in 5m3s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 24m19s

This commit is contained in:
Manuel Bustillo 2025-01-22 20:35:02 +01:00
parent f550b8d92c
commit 9f7f99f3f4

View File

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