Skip to content

Commit d687bf0

Browse files
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.
1 parent 7da27f3 commit d687bf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ define PROJECT_ENV
1212
{tcp_listeners, [5672]},
1313
{num_tcp_acceptors, 10},
1414
{ssl_listeners, []},
15-
{num_ssl_acceptors, 1},
15+
{num_ssl_acceptors, 10},
1616
{ssl_options, []},
1717
{vm_memory_high_watermark, 0.4},
1818
{vm_memory_high_watermark_paging_ratio, 0.5},

0 commit comments

Comments
 (0)