diff options
author | Loïc Hoguin <[email protected]> | 2017-06-07 15:15:54 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-06-07 15:15:54 +0200 |
commit | 6f7b59886ec17027b16ed4d10737452e17f233d0 (patch) | |
tree | 6beec34b1f3343ab250d3993d5a0d572cbd956f5 /examples/chunked_hello_world | |
parent | 767da623f1f7329cb0b0d86c3c1876ccf098d60a (diff) | |
download | cowboy-6f7b59886ec17027b16ed4d10737452e17f233d0.tar.gz cowboy-6f7b59886ec17027b16ed4d10737452e17f233d0.tar.bz2 cowboy-6f7b59886ec17027b16ed4d10737452e17f233d0.zip |
Remove NumAcceptors argument from start_clear/tls
They are now cowboy:start_clear/3 and cowboy:start_tls/3.
The NumAcceptors argument can be specified via the
num_acceptor transport option. Ranch has been updated
to 1.4.0 to that effect.
Diffstat (limited to 'examples/chunked_hello_world')
-rw-r--r-- | examples/chunked_hello_world/src/chunked_hello_world_app.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/chunked_hello_world/src/chunked_hello_world_app.erl b/examples/chunked_hello_world/src/chunked_hello_world_app.erl index fe66908..20abf6e 100644 --- a/examples/chunked_hello_world/src/chunked_hello_world_app.erl +++ b/examples/chunked_hello_world/src/chunked_hello_world_app.erl @@ -16,7 +16,7 @@ start(_Type, _Args) -> {"/", toppage_handler, []} ]} ]), - {ok, _} = cowboy:start_clear(http, 100, [{port, 8080}], #{ + {ok, _} = cowboy:start_clear(http, [{port, 8080}], #{ env => #{dispatch => Dispatch} }), chunked_hello_world_sup:start_link(). |