0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-16 05:00:24 +00:00

Remove cowboy_req:lock/1

This commit is contained in:
Loïc Hoguin 2016-06-22 10:42:23 +02:00
parent 34e5f5853a
commit 7e84719095
2 changed files with 1 additions and 6 deletions

View file

@ -54,7 +54,7 @@ execute(Req, Env=#{handler := Handler, handler_opts := HandlerOpts}) ->
terminate(Reason, Req, State, Handler) ->
case erlang:function_exported(Handler, terminate, 3) of
true ->
Handler:terminate(Reason, cowboy_req:lock(Req), State);
Handler:terminate(Reason, Req, State);
false ->
ok
end.

View file

@ -85,7 +85,6 @@
-export([get/2]).
-export([set/2]).
-export([set_bindings/4]).
-export([lock/1]).
-type cookie_opts() :: cow_cookie:cookie_opts().
-export_type([cookie_opts/0]).
@ -1066,10 +1065,6 @@ set_bindings(HostInfo, PathInfo, Bindings, Req) ->
Req#http_req{host_info=HostInfo, path_info=PathInfo,
bindings=Bindings}.
-spec lock(Req) -> Req when Req::req().
lock(Req) ->
Req#http_req{resp_state=locked}.
%% Internal.
%% We don't match on "keep-alive" since it is the default value.