chore: unhidden hstreamdb bridge for e5.2.0
This commit is contained in:
parent
649647190e
commit
f45b5fac6f
|
@ -1,7 +1,7 @@
|
||||||
%% -*- mode: erlang -*-
|
%% -*- mode: erlang -*-
|
||||||
{application, emqx_bridge, [
|
{application, emqx_bridge, [
|
||||||
{description, "EMQX bridges"},
|
{description, "EMQX bridges"},
|
||||||
{vsn, "0.1.26"},
|
{vsn, "0.1.27"},
|
||||||
{registered, [emqx_bridge_sup]},
|
{registered, [emqx_bridge_sup]},
|
||||||
{mod, {emqx_bridge_app, []}},
|
{mod, {emqx_bridge_app, []}},
|
||||||
{applications, [
|
{applications, [
|
||||||
|
|
|
@ -32,8 +32,7 @@ api_schemas(Method) ->
|
||||||
api_ref(emqx_bridge_mongodb, <<"mongodb_rs">>, Method ++ "_rs"),
|
api_ref(emqx_bridge_mongodb, <<"mongodb_rs">>, Method ++ "_rs"),
|
||||||
api_ref(emqx_bridge_mongodb, <<"mongodb_sharded">>, Method ++ "_sharded"),
|
api_ref(emqx_bridge_mongodb, <<"mongodb_sharded">>, Method ++ "_sharded"),
|
||||||
api_ref(emqx_bridge_mongodb, <<"mongodb_single">>, Method ++ "_single"),
|
api_ref(emqx_bridge_mongodb, <<"mongodb_single">>, Method ++ "_single"),
|
||||||
%% TODO: un-hide for e5.2.0...
|
api_ref(emqx_bridge_hstreamdb, <<"hstreamdb">>, Method),
|
||||||
%%api_ref(emqx_bridge_hstreamdb, <<"hstreamdb">>, Method),
|
|
||||||
api_ref(emqx_bridge_influxdb, <<"influxdb_api_v1">>, Method ++ "_api_v1"),
|
api_ref(emqx_bridge_influxdb, <<"influxdb_api_v1">>, Method ++ "_api_v1"),
|
||||||
api_ref(emqx_bridge_influxdb, <<"influxdb_api_v2">>, Method ++ "_api_v2"),
|
api_ref(emqx_bridge_influxdb, <<"influxdb_api_v2">>, Method ++ "_api_v2"),
|
||||||
api_ref(emqx_bridge_redis, <<"redis_single">>, Method ++ "_single"),
|
api_ref(emqx_bridge_redis, <<"redis_single">>, Method ++ "_single"),
|
||||||
|
@ -147,8 +146,7 @@ fields(bridges) ->
|
||||||
hoconsc:map(name, ref(emqx_bridge_hstreamdb, "config")),
|
hoconsc:map(name, ref(emqx_bridge_hstreamdb, "config")),
|
||||||
#{
|
#{
|
||||||
desc => <<"HStreamDB Bridge Config">>,
|
desc => <<"HStreamDB Bridge Config">>,
|
||||||
required => false,
|
required => false
|
||||||
importance => ?IMPORTANCE_HIDDEN
|
|
||||||
}
|
}
|
||||||
)},
|
)},
|
||||||
{mysql,
|
{mysql,
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Add HStreamDB bridge support (both TCP and TLS connection allowed), adapted to the HStreamDB `v0.16.1`.
|
Loading…
Reference in New Issue