fix(discovery): typo in the consul_kv schema (#4390)

Co-authored-by: nieyong <nieyong@staff.weibo.com>
This commit is contained in:
yongboy 2021-06-09 02:47:21 +08:00 committed by GitHub
parent e6c69318e1
commit af5e4dff00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,12 +102,12 @@ local schema = {
type = "object",
properties = {
fail_timeout = {type = "integer", default = 1},
weigth = {type = "integer", default = 1},
weight = {type = "integer", default = 1},
max_fails = {type = "integer", default = 1}
},
default = {
fail_timeout = 1,
weigth = 1,
weight = 1,
max_fails = 1
}
}