Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhuyan committed Dec 10, 2023
1 parent a10cd43 commit 79e1225
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/quicer_server_conn_callback.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@
, new_stream/3
]).

-export([handle_info/2]).

init(ConnOpts) when is_list(ConnOpts) ->
init(maps:from_list(ConnOpts));
init(#{stream_opts := SOpts} = S) when is_list(SOpts) ->
Expand Down Expand Up @@ -116,6 +118,8 @@ connected(Conn, _Flags, #{ slow_start := false, stream_opts := SOpts
connected(_Connecion, _Flags, S) ->
{ok, S}.

handle_info({'EXIT', _Pid, _Reason}, State) ->
{ok, State}.

%% Internals

Expand Down

0 comments on commit 79e1225

Please sign in to comment.