summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2017-10-29 16:19:30 +0300
committerMichael Klishin <michael@clojurewerkz.org>2017-10-29 16:19:30 +0300
commitd687bf0be3a23fdb63c1c0b36db967285a112c74 (patch)
tree417778817dfac289454a27d5fecf647120728943
parent7da27f3d3b80beddc1ac503c388df78972153ea0 (diff)
downloadrabbitmq-server-git-d687bf0be3a23fdb63c1c0b36db967285a112c74.tar.gz
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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5b26d4ec3b..2f91e3f969 100644
--- a/Makefile
+++ b/Makefile
@@ -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},