diff options
author | Loïc Hoguin <[email protected]> | 2019-05-09 10:43:25 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2019-05-09 10:47:15 +0200 |
commit | 3ea575d8682560fc02d5583cbf2837e2f2f43e9f (patch) | |
tree | a20024277c5bad93fd05d9a32013ecabfeddd485 /test/remove_conn_and_wait_protocol.erl | |
parent | e92171a8f80755dad795691ad9e07807212d0d1c (diff) | |
download | ranch-3ea575d8682560fc02d5583cbf2837e2f2f43e9f.tar.gz ranch-3ea575d8682560fc02d5583cbf2837e2f2f43e9f.tar.bz2 ranch-3ea575d8682560fc02d5583cbf2837e2f2f43e9f.zip |
Remove Socket argument from ranch_protocol:start_link
Diffstat (limited to 'test/remove_conn_and_wait_protocol.erl')
-rw-r--r-- | test/remove_conn_and_wait_protocol.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/remove_conn_and_wait_protocol.erl b/test/remove_conn_and_wait_protocol.erl index caac41e..abb4281 100644 --- a/test/remove_conn_and_wait_protocol.erl +++ b/test/remove_conn_and_wait_protocol.erl @@ -1,10 +1,10 @@ -module(remove_conn_and_wait_protocol). -behaviour(ranch_protocol). --export([start_link/4]). +-export([start_link/3]). -export([init/3]). -start_link(Ref, _, _, [{remove, MaybeRemove, Timeout}]) -> +start_link(Ref, _, [{remove, MaybeRemove, Timeout}]) -> Pid = spawn_link(?MODULE, init, [Ref, MaybeRemove, Timeout]), {ok, Pid}. |