From 90fa64c691f7cab769298df11cc4ef3736e35bc3 Mon Sep 17 00:00:00 2001 From: Adam Lancaster Date: Mon, 1 Nov 2021 12:13:58 +0000 Subject: [PATCH] Update provider.ex --- lib/elixir/lib/config/provider.ex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/elixir/lib/config/provider.ex b/lib/elixir/lib/config/provider.ex index 26dc7b4b53e..a1cf8a49bf3 100644 --- a/lib/elixir/lib/config/provider.ex +++ b/lib/elixir/lib/config/provider.ex @@ -56,8 +56,10 @@ defmodule Config.Provider do @behaviour Config.Provider # Let's pass the path to the JSON file as config + @impl true def init(path) when is_binary(path), do: path + @impl true def load(config, path) do # We need to start any app we may depend on. {:ok, _} = Application.ensure_all_started(:jason)