docs(schema): Fix typos

This commit is contained in:
ieQu1 2022-03-23 08:40:59 +01:00
parent 6f4e7dc118
commit 503c7f00ae
2 changed files with 6 additions and 6 deletions

View File

@ -1014,7 +1014,7 @@ broker {
## @doc broker.session_locking_strategy ## @doc broker.session_locking_strategy
## ValueType: local | one | quorum | all ## ValueType: local | one | quorum | all
## - local: only lock the session locally on the current node ## - local: only lock the session locally on the current node
## - one: select only one remove node to lock the session ## - one: select only one remote node to lock the session
## - quorum: select some nodes to lock the session ## - quorum: select some nodes to lock the session
## - all: lock the session on all the nodes in the cluster ## - all: lock the session on all the nodes in the cluster
## Default: quorum ## Default: quorum
@ -1027,7 +1027,7 @@ broker {
## - random: dispatch the message to a random selected subscriber ## - random: dispatch the message to a random selected subscriber
## - round_robin: select the subscribers in a round-robin manner ## - round_robin: select the subscribers in a round-robin manner
## - sticky: always use the last selected subscriber to dispatch, ## - sticky: always use the last selected subscriber to dispatch,
## until the subscriber disconnected. ## until the subscriber disconnects.
## - hash: select the subscribers by the hash of clientIds ## - hash: select the subscribers by the hash of clientIds
## Default: round_robin ## Default: round_robin
shared_subscription_strategy = round_robin shared_subscription_strategy = round_robin
@ -1158,7 +1158,7 @@ sysmon {
## Default: disabled ## Default: disabled
vm.long_gc = disabled vm.long_gc = disabled
## Enable Long Schedule(ms) monitoring. ## Enable Long Schedule monitoring.
## ##
## See: http://erlang.org/doc/man/erlang.html#system_monitor-2 ## See: http://erlang.org/doc/man/erlang.html#system_monitor-2
## ##

View File

@ -1228,7 +1228,7 @@ fields("broker") ->
desc => desc =>
"Session locking strategy in a cluster.<br/>\n" "Session locking strategy in a cluster.<br/>\n"
" - `local`: only lock the session on the current node\n" " - `local`: only lock the session on the current node\n"
" - `one`: select only one remove node to lock the session\n" " - `one`: select only one remote node to lock the session\n"
" - `quorum`: select some nodes to lock the session\n" " - `quorum`: select some nodes to lock the session\n"
" - `all`: lock the session on all the nodes in the cluster" " - `all`: lock the session on all the nodes in the cluster"
} }
@ -1243,7 +1243,7 @@ fields("broker") ->
" - `random`: dispatch the message to a random selected subscriber\n" " - `random`: dispatch the message to a random selected subscriber\n"
" - `round_robin`: select the subscribers in a round-robin manner\n" " - `round_robin`: select the subscribers in a round-robin manner\n"
" - `sticky`: always use the last selected subscriber to dispatch,\n" " - `sticky`: always use the last selected subscriber to dispatch,\n"
" until the subscriber disconnected.\n" " until the subscriber disconnects.\n"
" - `hash`: select the subscribers by the hash of `clientIds`" " - `hash`: select the subscribers by the hash of `clientIds`"
} }
)}, )},
@ -1418,7 +1418,7 @@ fields("sysmon_vm") ->
hoconsc:union([disabled, duration()]), hoconsc:union([disabled, duration()]),
#{ #{
default => "240ms", default => "240ms",
desc => "Enable Long Schedule(ms) monitoring." desc => "Enable Long Schedule monitoring."
} }
)}, )},
{"large_heap", {"large_heap",