diff options
author | Loïc Hoguin <[email protected]> | 2014-09-24 15:03:10 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2014-09-24 15:03:10 +0300 |
commit | c56bada509a448348ba724841a27abed201b4861 (patch) | |
tree | 10162f5c47ad8394f74f12e4105e20488e9c3fd1 /doc/src/manual/cowboy_middleware.ezdoc | |
parent | aa4d86b81f6095316813c599659014c15bf9b935 (diff) | |
download | cowboy-c56bada509a448348ba724841a27abed201b4861.tar.gz cowboy-c56bada509a448348ba724841a27abed201b4861.tar.bz2 cowboy-c56bada509a448348ba724841a27abed201b4861.zip |
Remove the error tuple return value for middlewares
It wasn't interesting compared to simply returning a halt tuple
with an explicit reply.
Diffstat (limited to 'doc/src/manual/cowboy_middleware.ezdoc')
-rw-r--r-- | doc/src/manual/cowboy_middleware.ezdoc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/src/manual/cowboy_middleware.ezdoc b/doc/src/manual/cowboy_middleware.ezdoc index 065139c..2275d35 100644 --- a/doc/src/manual/cowboy_middleware.ezdoc +++ b/doc/src/manual/cowboy_middleware.ezdoc @@ -22,7 +22,6 @@ optionally with its contents modified. -> {ok, Req, Env} | {suspend, Module, Function, Args} | {halt, Req} - | {error, StatusCode, Req} Types: @@ -31,7 +30,6 @@ Types: * Module = module() * Function = atom() * Args = [any()] -* StatusCode = cowboy:http_status() Execute the middleware. @@ -47,8 +45,3 @@ The `halt` return value stops Cowboy from doing any further processing of the request, even if there are middlewares that haven't been executed yet. The connection may be left open to receive more requests from the client. - -The `error` return value sends an error response identified -by the `StatusCode` and then proceeds to terminate the -connection. Middlewares that haven't been executed yet -will not be called. |