fix(growth): ignore enum result explicitly
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
João Paulo Dubas 2024-06-10 19:24:41 +00:00
parent 06b35cbceb
commit 0ac434c61d
Signed by: joao.dubas
SSH Key Fingerprint: SHA256:V1mixgOGRc/YMhGx/DNkOSmJxgA2vHNrDZEk3wt/kOA

View File

@ -49,9 +49,10 @@ defmodule Growth.Indicators.Load do
@doc false @doc false
def start_link(_) do def start_link(_) do
Enum.map(@measure_to_score, fn {_, measure} -> _ =
create_ets(measure) Enum.map(@measure_to_score, fn {_, measure} ->
end) create_ets(measure)
end)
Task.start_link(__MODULE__, :all, []) Task.start_link(__MODULE__, :all, [])
end end