1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

resolve compiler warnings

This commit is contained in:
Nathan Youngman 2024-06-19 15:00:31 -06:00 committed by edgurgel
parent aa7ca908f0
commit 71675f8d3d
2 changed files with 2 additions and 3 deletions

View file

@ -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")

View file

@ -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