Run linter
This commit is contained in:
@@ -38,13 +38,13 @@ if config_env() == :prod do
|
||||
# See `mix help release` for more information.
|
||||
end
|
||||
|
||||
{port, _} = System.fetch_env!("KAFKA_BROKER_PORT")
|
||||
|> Integer.parse
|
||||
{port, _} =
|
||||
System.fetch_env!("KAFKA_BROKER_PORT")
|
||||
|> Integer.parse()
|
||||
|
||||
config :kafka_ex,
|
||||
brokers: [
|
||||
{System.fetch_env!("KAFKA_BROKER1_HOST"), port},
|
||||
{System.fetch_env!("KAFKA_BROKER2_HOST"), port},
|
||||
{System.fetch_env!("KAFKA_BROKER3_HOST"), port},
|
||||
]
|
||||
|
||||
brokers: [
|
||||
{System.fetch_env!("KAFKA_BROKER1_HOST"), port},
|
||||
{System.fetch_env!("KAFKA_BROKER2_HOST"), port},
|
||||
{System.fetch_env!("KAFKA_BROKER3_HOST"), port}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user