Fix typo round_robbin -> round_robin in emqx.schema

This commit is contained in:
spring2maz 2019-04-16 22:38:56 +02:00 committed by tigercl
parent f1616c33d9
commit 8821cfcfc7
2 changed files with 4 additions and 4 deletions

View File

@ -2122,7 +2122,7 @@ broker.session_locking_strategy = quorum
## ##
## Value: Enum ## Value: Enum
## - random ## - random
## - round_robbin ## - round_robin
## - sticky ## - sticky
## - hash ## - hash
broker.shared_subscription_strategy = random broker.shared_subscription_strategy = random

View File

@ -1996,11 +1996,11 @@ end}.
%% @doc Shared Subscription Dispatch Strategy. %% @doc Shared Subscription Dispatch Strategy.
{mapping, "broker.shared_subscription_strategy", "emqx.shared_subscription_strategy", [ {mapping, "broker.shared_subscription_strategy", "emqx.shared_subscription_strategy", [
{default, round_robbin}, {default, round_robin},
{datatype, {datatype,
{enum, {enum,
[random, %% randomly pick a subscriber [random, %% randomly pick a subscriber
round_robbin, %% round robin alive subscribers one message after another round_robin, %% round robin alive subscribers one message after another
sticky, %% pick a random subscriber and stick to it sticky, %% pick a random subscriber and stick to it
hash %% hash client ID to a group member hash %% hash client ID to a group member
]}} ]}}