Merge pull request #11333 from JimMoen/chore-hide-hstreamdb

chore: hidden hstreamdb bridge schema
This commit is contained in:
JianBo He 2023-07-24 21:54:10 +08:00 committed by GitHub
commit f848c0b87a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -32,7 +32,8 @@ api_schemas(Method) ->
api_ref(emqx_bridge_mongodb, <<"mongodb_rs">>, Method ++ "_rs"),
api_ref(emqx_bridge_mongodb, <<"mongodb_sharded">>, Method ++ "_sharded"),
api_ref(emqx_bridge_mongodb, <<"mongodb_single">>, Method ++ "_single"),
api_ref(emqx_bridge_hstreamdb, <<"hstreamdb">>, Method),
%% TODO: un-hide for e5.2.0...
%%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_v2">>, Method ++ "_api_v2"),
api_ref(emqx_bridge_redis, <<"redis_single">>, Method ++ "_single"),
@ -128,7 +129,8 @@ fields(bridges) ->
hoconsc:map(name, ref(emqx_bridge_hstreamdb, "config")),
#{
desc => <<"HStreamDB Bridge Config">>,
required => false
required => false,
importance => ?IMPORTANCE_HIDDEN
}
)},
{mysql,

View File

@ -1 +0,0 @@
Add HStreamDB bridge support, adapted to the HStreamDB `v0.15.0`.