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:
Michael Klishin 2017-10-29 16:19:30 +03:00
parent 7da27f3d3b
commit d687bf0be3
No known key found for this signature in database
GPG Key ID: E80EDCFA0CDB21EE
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ define PROJECT_ENV
{tcp_listeners, [5672]},
{num_tcp_acceptors, 10},
{ssl_listeners, []},
{num_ssl_acceptors, 1},
{num_ssl_acceptors, 10},
{ssl_options, []},
{vm_memory_high_watermark, 0.4},
{vm_memory_high_watermark_paging_ratio, 0.5},