Browse Source

fix: resource tag type should be binary string

Co-authored-by: Thales Macedo Garitezi <thalesmg@gmail.com>
Zaiming (Stone) Shi 2 years atrás
parent
commit
01d52e37c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      apps/emqx/src/emqx_schema.erl

+ 1 - 1
apps/emqx/src/emqx_schema.erl

@@ -3829,7 +3829,7 @@ description_schema() ->
 
 tags_schema() ->
     sc(
-        hoconsc:array(string()),
+        hoconsc:array(binary()),
         #{
             desc => ?DESC(resource_tags),
             required => false,