Fix a dialyzer warning in egs_app.
This commit is contained in:
parent
408e7e99e6
commit
bc47fcb049
@ -29,20 +29,16 @@
|
|||||||
|
|
||||||
%% API.
|
%% API.
|
||||||
|
|
||||||
-spec start(application_start_type(), term()) -> {ok, pid()} | {error, atom()}.
|
-spec start(application_start_type(), term()) -> {ok, pid()}.
|
||||||
start(_Type, _StartArgs) ->
|
start(_Type, _StartArgs) ->
|
||||||
case egs_sup:start_link() of
|
{ok, Pid} = egs_sup:start_link(),
|
||||||
{ok, Pid} ->
|
start_patch_listeners(egs_conf:read(patch_ports)),
|
||||||
start_patch_listeners(egs_conf:read(patch_ports)),
|
start_login_listeners(egs_conf:read(login_ports)),
|
||||||
start_login_listeners(egs_conf:read(login_ports)),
|
{_ServerIP, GamePort} = egs_conf:read(game_server),
|
||||||
{_ServerIP, GamePort} = egs_conf:read(game_server),
|
{ok, _GamePid} = cowboy:start_listener({game, GamePort}, 10,
|
||||||
{ok, _GamePid} = cowboy:start_listener({game, GamePort}, 10,
|
cowboy_ssl_transport, [{port, GamePort}] ++ ?SSL_OPTIONS,
|
||||||
cowboy_ssl_transport, [{port, GamePort}] ++ ?SSL_OPTIONS,
|
egs_game_protocol, []),
|
||||||
egs_game_protocol, []),
|
{ok, Pid}.
|
||||||
{ok, Pid};
|
|
||||||
{error, Reason} ->
|
|
||||||
{error, Reason}
|
|
||||||
end.
|
|
||||||
|
|
||||||
-spec stop(term()) -> ok.
|
-spec stop(term()) -> ok.
|
||||||
stop(_State) ->
|
stop(_State) ->
|
||||||
|
Loading…
Reference in New Issue
Block a user