Merge pull request #9348 from zmstone/1110-add-comments

docs: add a comment to schema default value
This commit is contained in:
Zaiming (Stone) Shi 2022-11-14 09:48:44 +01:00 committed by GitHub
commit 6abb451f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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}
]}.