Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run mix format on codebase #327

Merged
merged 1 commit into from
Dec 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions config/config.exs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ config :kafka_ex,
brokers: [
{"localhost", 9092},
{"localhost", 9093},
{"localhost", 9094},
{"localhost", 9094}
],
#
# OR:
Expand Down Expand Up @@ -57,15 +57,16 @@ config :kafka_ex,
# see SSL OPTION DESCRIPTIONS - CLIENT SIDE at http://erlang.org/doc/man/ssl.html
# for supported options
ssl_options: [
cacertfile: System.cwd <> "/ssl/ca-cert",
certfile: System.cwd <> "/ssl/cert.pem",
keyfile: System.cwd <> "/ssl/key.pem",
cacertfile: System.cwd() <> "/ssl/ca-cert",
certfile: System.cwd() <> "/ssl/cert.pem",
keyfile: System.cwd() <> "/ssl/key.pem"
],
# set this to the version of the kafka broker that you are using
# include only major.minor.patch versions. must be at least 0.8.0
kafka_version: "0.10.1"

env_config = Path.expand("#{Mix.env}.exs", __DIR__)
env_config = Path.expand("#{Mix.env()}.exs", __DIR__)

if File.exists?(env_config) do
import_config(env_config)
end
Loading