From 6557dbe967347026be8b8ce71e352b510a5ca7ff Mon Sep 17 00:00:00 2001 From: Feng Lee Date: Mon, 13 Mar 2017 15:08:29 +0800 Subject: [PATCH] Change 'ssl' option to 'sslopts' --- priv/emq.schema | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/emq.schema b/priv/emq.schema index b5f40b893..697c6c7ae 100644 --- a/priv/emq.schema +++ b/priv/emq.schema @@ -725,7 +725,7 @@ end}. ConnOpts = Filter([{rate_limit, cuttlefish:conf_get(Key ++ ".rate_limit", Conf, undefined)}]), Opts = [{connopts, ConnOpts}, {sockopts, TcpOpts(Key)} | LisOpts(Key)], [{Name, Port, case Name =:= ssl orelse Name =:= https of - true -> [{ssl, SslOpts(Key)} | Opts]; + true -> [{sslopts, SslOpts(Key)} | Opts]; false -> Opts end}] end