mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
resolve compiler warnings
This commit is contained in:
parent
aa7ca908f0
commit
71675f8d3d
2 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
import Mix.Config
|
import Config
|
||||||
|
|
||||||
port = System.get_env("PORT", "8080")
|
port = System.get_env("PORT", "8080")
|
||||||
port = String.to_integer(port)
|
port = String.to_integer(port)
|
||||||
|
@ -14,4 +14,3 @@ config :httparrot,
|
||||||
https_port: ssl_port,
|
https_port: ssl_port,
|
||||||
unix_socket: unix_socket,
|
unix_socket: unix_socket,
|
||||||
socket_path: System.get_env("SOCKET_PATH", "httparrot.sock")
|
socket_path: System.get_env("SOCKET_PATH", "httparrot.sock")
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ defmodule HTTParrot do
|
||||||
end
|
end
|
||||||
|
|
||||||
def init(_) do
|
def init(_) do
|
||||||
supervise([], strategy: :simple_one_for_one)
|
Supervisor.start_link([], [strategy: :one_for_one])
|
||||||
end
|
end
|
||||||
|
|
||||||
def start(_type, _args) do
|
def start(_type, _args) do
|
||||||
|
|
Loading…
Add table
Reference in a new issue