From 0ac434c61d5df03263f22c924e6ce5792ce97431 Mon Sep 17 00:00:00 2001 From: Joao P Dubas Date: Mon, 10 Jun 2024 19:24:41 +0000 Subject: [PATCH] fix(growth): ignore enum result explicitly --- lib/growth/indicators/load.ex | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/growth/indicators/load.ex b/lib/growth/indicators/load.ex index bccd29a..95659f4 100644 --- a/lib/growth/indicators/load.ex +++ b/lib/growth/indicators/load.ex @@ -49,9 +49,10 @@ defmodule Growth.Indicators.Load do @doc false def start_link(_) do - Enum.map(@measure_to_score, fn {_, measure} -> - create_ets(measure) - end) + _ = + Enum.map(@measure_to_score, fn {_, measure} -> + create_ets(measure) + end) Task.start_link(__MODULE__, :all, []) end