From 1f4e99a51d776755c5ab5907609492db0205352e Mon Sep 17 00:00:00 2001 From: Blaz Merela Date: Tue, 30 Aug 2022 15:07:55 +0200 Subject: [PATCH] Fix warning by using Elixir 1.9 `Config` module --- config/config.exs | 2 +- config/test.exs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.exs b/config/config.exs index 4f391b18..6f7406ee 100644 --- a/config/config.exs +++ b/config/config.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config config :kafka_ex, # A list of brokers to connect to. This can be in either of the following formats diff --git a/config/test.exs b/config/test.exs index 82b2490c..80955680 100644 --- a/config/test.exs +++ b/config/test.exs @@ -1,4 +1,4 @@ -use Mix.Config +import Config config :ex_unit, capture_log: is_nil(System.get_env("SHOW_LOGS"))