diff options
author | Loïc Hoguin <[email protected]> | 2014-11-07 20:19:05 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-11-07 20:19:05 +0200 |
commit | 999dc5b7c1665fb620c14f6303610793313efe58 (patch) | |
tree | 8371be2957e20b40fa9b5b93c63e414510e93c2e /src/cowboy_spdy.erl | |
parent | 8cbd8c1882e33380875f2723cad258784ba3a360 (diff) | |
download | cowboy-999dc5b7c1665fb620c14f6303610793313efe58.tar.gz cowboy-999dc5b7c1665fb620c14f6303610793313efe58.tar.bz2 cowboy-999dc5b7c1665fb620c14f6303610793313efe58.zip |
Rename 'halt' to 'stop' for better consistency
Now everywhere in Cowboy when we want to stop something we return
a 'stop' tuple instead of one of the many choices depending on
context that we had before.
This particular change affects middlewares, sub protocols and
REST handlers which were using 'halt' to stop processing.
Diffstat (limited to 'src/cowboy_spdy.erl')
-rw-r--r-- | src/cowboy_spdy.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cowboy_spdy.erl b/src/cowboy_spdy.erl index 4d83ff6..91c4f4a 100644 --- a/src/cowboy_spdy.erl +++ b/src/cowboy_spdy.erl @@ -406,7 +406,7 @@ execute(Req, Env, [Middleware|Tail]) -> {suspend, Module, Function, Args} -> erlang:hibernate(?MODULE, resume, [Env, Tail, Module, Function, Args]); - {halt, Req2} -> + {stop, Req2} -> cowboy_req:ensure_response(Req2, 204) end. @@ -419,7 +419,7 @@ resume(Env, Tail, Module, Function, Args) -> {suspend, Module2, Function2, Args2} -> erlang:hibernate(?MODULE, resume, [Env, Tail, Module2, Function2, Args2]); - {halt, Req2} -> + {stop, Req2} -> cowboy_req:ensure_response(Req2, 204) end. |