chore: remove unused mqtt cap 'subscription_identifiers'
This commit is contained in:
parent
be6cd5705f
commit
e5884e0e87
|
@ -37,7 +37,6 @@
|
||||||
max_qos_allowed => emqx_types:qos(),
|
max_qos_allowed => emqx_types:qos(),
|
||||||
retain_available => boolean(),
|
retain_available => boolean(),
|
||||||
wildcard_subscription => boolean(),
|
wildcard_subscription => boolean(),
|
||||||
subscription_identifiers => boolean(),
|
|
||||||
shared_subscription => boolean(),
|
shared_subscription => boolean(),
|
||||||
exclusive_subscription => boolean()
|
exclusive_subscription => boolean()
|
||||||
}.
|
}.
|
||||||
|
@ -66,7 +65,6 @@
|
||||||
max_qos_allowed,
|
max_qos_allowed,
|
||||||
retain_available,
|
retain_available,
|
||||||
wildcard_subscription,
|
wildcard_subscription,
|
||||||
subscription_identifiers,
|
|
||||||
shared_subscription,
|
shared_subscription,
|
||||||
exclusive_subscription
|
exclusive_subscription
|
||||||
]).
|
]).
|
||||||
|
|
|
@ -275,7 +275,6 @@ t_chan_caps(_) ->
|
||||||
max_topic_levels := Level,
|
max_topic_levels := Level,
|
||||||
retain_available := true,
|
retain_available := true,
|
||||||
shared_subscription := true,
|
shared_subscription := true,
|
||||||
subscription_identifiers := true,
|
|
||||||
wildcard_subscription := true
|
wildcard_subscription := true
|
||||||
} when is_integer(Level),
|
} when is_integer(Level),
|
||||||
emqx_channel:caps(channel())
|
emqx_channel:caps(channel())
|
||||||
|
|
Loading…
Reference in New Issue