소스 검색

elixir/cowboy: remove mysql config to fix warnings

The app prints the following warnings on Elixir 1.2:

> You have configured application :mysql in your configuration
> file but the application is not available.
>
> This usually means one of:
>
> 1. You have not added the application as a dependency in a mix.exs file.
>
> 2. You are configuring an application that does not really exist.
>
> Please ensure :mysql exists or remove the configuration.

This app isn't using the config at all, so instead of changing the key,
I'm removing it.
Utkarsh Kukreti 9 년 전
부모
커밋
ea5af05237
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      frameworks/Elixir/cowboy/config/config.exs

+ 0 - 6
frameworks/Elixir/cowboy/config/config.exs

@@ -1,7 +1 @@
 use Mix.Config
-
-config :mysql,
-  username: "benchmarkdbuser",
-  password: "benchmarkdbpass",
-  database: "hello_world",
-  hostname: "localhost"