fix(bpapi): ignore dropped BPAPI module
It doesn't really breaks interoperability.
This commit is contained in:
parent
79d430cf03
commit
39b0d41527
|
@ -28,6 +28,7 @@
|
|||
{emqx_management,2}.
|
||||
{emqx_management,3}.
|
||||
{emqx_management,4}.
|
||||
{emqx_metrics,1}.
|
||||
{emqx_mgmt_api_plugins,1}.
|
||||
{emqx_mgmt_api_plugins,2}.
|
||||
{emqx_mgmt_cluster,1}.
|
||||
|
@ -38,7 +39,6 @@
|
|||
{emqx_node_rebalance_evacuation,1}.
|
||||
{emqx_node_rebalance_status,1}.
|
||||
{emqx_persistent_session,1}.
|
||||
{emqx_plugin_libs,1}.
|
||||
{emqx_plugins,1}.
|
||||
{emqx_prometheus,1}.
|
||||
{emqx_resource,1}.
|
||||
|
|
|
@ -51,8 +51,14 @@
|
|||
"gen_rpc, recon, redbug, observer_cli, snabbkaffe, ekka, mria, amqp_client, rabbit_common"
|
||||
).
|
||||
-define(IGNORED_MODULES, "emqx_rpc").
|
||||
-define(FORCE_DELETED_MODULES, [emqx_statsd, emqx_statsd_proto_v1]).
|
||||
-define(FORCE_DELETED_APIS, [{emqx_statsd, 1}]).
|
||||
-define(FORCE_DELETED_MODULES, [
|
||||
emqx_statsd,
|
||||
emqx_statsd_proto_v1
|
||||
]).
|
||||
-define(FORCE_DELETED_APIS, [
|
||||
{emqx_statsd, 1},
|
||||
{emqx_plugin_libs, 1}
|
||||
]).
|
||||
%% List of known RPC backend modules:
|
||||
-define(RPC_MODULES, "gen_rpc, erpc, rpc, emqx_rpc").
|
||||
%% List of known functions also known to do RPC:
|
||||
|
|
Loading…
Reference in New Issue