From 80562b3bbf07148f4c7b793635cef146cc6f0ca4 Mon Sep 17 00:00:00 2001 From: Aleksei Magusev Date: Sun, 2 Nov 2014 12:05:51 +0100 Subject: [PATCH] Use `Application.get(fetch)_env/3(2)` functions --- lib/httparrot.ex | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/httparrot.ex b/lib/httparrot.ex index 24027ca..8b2c378 100644 --- a/lib/httparrot.ex +++ b/lib/httparrot.ex @@ -31,13 +31,12 @@ defmodule HTTParrot do {'/image', HTTParrot.ImageHandler, []}, {'/websocket', HTTParrot.WebsocketHandler, []} ] } ]) - {:ok, http_port} = :application.get_env(:httparrot, :http_port) - ssl = :application.get_env(:httparrot, :ssl, false) - {:ok, _} = :cowboy.start_http(:http, 100, [port: http_port], + {:ok, http_port} = Application.fetch_env(:httparrot, :http_port) + :cowboy.start_http(:http, 100, [port: http_port], [env: [dispatch: dispatch], onresponse: &prettify_json/4]) - if ssl do - {:ok, https_port} = :application.get_env(:httparrot, :https_port) + if Application.get_env(:httparrot, :ssl, false) do + {:ok, https_port} = Application.fetch_env(:httparrot, :https_port) priv_dir = :code.priv_dir(:httparrot) {:ok, _} = :cowboy.start_https(:https, 100, [port: https_port, cacertfile: priv_dir ++ '/ssl/server-ca.crt',