Merge pull request #10275 from thalesmg/fix-redis-default-required-db-rv50

fix(redis): remove `required` meta from schema
This commit is contained in:
Thales Macedo Garitezi 2023-03-30 15:03:51 -03:00 committed by GitHub
commit 4875b4454d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
%% -*- mode: erlang -*-
{application, emqx_connector, [
{description, "EMQX Data Integration Connectors"},
{vsn, "0.1.17"},
{vsn, "0.1.18"},
{registered, []},
{mod, {emqx_connector_app, []}},
{applications, [

View File

@ -285,7 +285,6 @@ redis_fields() ->
{database, #{
type => integer(),
default => 0,
required => true,
desc => ?DESC("database")
}},
{auto_reconnect, fun emqx_connector_schema_lib:auto_reconnect/1}