Bump rabbit.num_ssl_acceptors default to 10
Previously the value was limited to 1 due to a bug in Ranch 1.0: it didn't depend on the ssl app, which means Ranch/ssl shut down order was not guaranteed. This led to scary but entirely harmless exception traces in the log, one per TLS acceptor. The issue is no longer present in Ranch 1.3.x and 1.4.0. Per discussion with @essen.
This commit is contained in:
parent
7da27f3d3b
commit
d687bf0be3
2
Makefile
2
Makefile
|
@ -12,7 +12,7 @@ define PROJECT_ENV
|
||||||
{tcp_listeners, [5672]},
|
{tcp_listeners, [5672]},
|
||||||
{num_tcp_acceptors, 10},
|
{num_tcp_acceptors, 10},
|
||||||
{ssl_listeners, []},
|
{ssl_listeners, []},
|
||||||
{num_ssl_acceptors, 1},
|
{num_ssl_acceptors, 10},
|
||||||
{ssl_options, []},
|
{ssl_options, []},
|
||||||
{vm_memory_high_watermark, 0.4},
|
{vm_memory_high_watermark, 0.4},
|
||||||
{vm_memory_high_watermark_paging_ratio, 0.5},
|
{vm_memory_high_watermark_paging_ratio, 0.5},
|
||||||
|
|
Loading…
Reference in New Issue