From 3e914c44a4e956c3b6ef3c1ffc64aac1fca46be9 Mon Sep 17 00:00:00 2001 From: vdimir <7023786+vdimir@users.noreply.github.com> Date: Sun, 30 Aug 2020 12:49:35 +0300 Subject: Fix opts in listeners.asciidoc --- doc/src/guide/listeners.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/guide/listeners.asciidoc b/doc/src/guide/listeners.asciidoc index 6e2dd19..0aee43c 100644 --- a/doc/src/guide/listeners.asciidoc +++ b/doc/src/guide/listeners.asciidoc @@ -200,7 +200,7 @@ overloaded and ensuring all the connections are handled optimally. [source,erlang] {ok, _} = ranch:start_listener(tcp_echo, - ranch_tcp, [{port, 5555}, {max_connections, 100}], + ranch_tcp, #{socket_opts => [{port, 5555}], max_connections => 100}, echo_protocol, [] ). @@ -210,7 +210,7 @@ You can disable this limit by setting its value to the atom `infinity`. [source,erlang] {ok, _} = ranch:start_listener(tcp_echo, - ranch_tcp, [{port, 5555}, {max_connections, infinity}], + ranch_tcp, #{socket_opts => [{port, 5555}], max_connections => infinity}, echo_protocol, [] ). -- cgit v1.2.3