This is an automated email from the ASF dual-hosted git repository.
baoyuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix.git
The following commit(s) were added to refs/heads/master by this push:
new c8248a693 fix(schema): correct minLength type for anonymous consumer
(#13022)
c8248a693 is described below
commit c8248a69381c02c0f1e6743b65a80cc02f22c155
Author: Vijaya Lakshmi Pokala <[email protected]>
AuthorDate: Tue Feb 24 07:49:02 2026 +0530
fix(schema): correct minLength type for anonymous consumer (#13022)
---
apisix/schema_def.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apisix/schema_def.lua b/apisix/schema_def.lua
index 491265a58..c66f4bc2f 100644
--- a/apisix/schema_def.lua
+++ b/apisix/schema_def.lua
@@ -26,7 +26,7 @@ local plugins_schema = {
_M.anonymous_consumer_schema = {
type = "string",
- minLength = "1"
+ minLength = 1
}
function _M.get_realm_schema(default_val)