From f9c1f8cf32f0c6c882c3b5df7c90a14e59fb2826 Mon Sep 17 00:00:00 2001 From: "Zaiming (Stone) Shi" Date: Thu, 10 Nov 2022 22:00:25 +0100 Subject: [PATCH] docs: add a comment to schema default value --- priv/emqx.schema | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/priv/emqx.schema b/priv/emqx.schema index 0399cb27d..e2eaa7b10 100644 --- a/priv/emqx.schema +++ b/priv/emqx.schema @@ -807,13 +807,13 @@ end}. %% @doc Define a determined authentication plugin/module check order. %% see detailed doc in emqx.conf {mapping, "auth_order", "emqx.auth_order", [ - {default, "none"}, + {default, "none"}, % keep default value in sync with emqx_conf.erl {datatype, string} ]}. %% @doc Same as auth_order, but for ACL. {mapping, "acl_order", "emqx.acl_order", [ - {default, "none"}, + {default, "none"}, % keep default value in sync with emqx_conf.erl {datatype, string} ]}.