1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: variant weights can be up to 1000

This commit is contained in:
Ivar Conradi Østhus 2020-02-13 17:53:09 +01:00
parent a8a3a44b8d
commit 9e79d70060

View File

@ -25,7 +25,7 @@ const variantsSchema = joi.object().keys({
weight: joi
.number()
.min(0)
.max(100)
.max(1000)
.required(),
payload: joi
.object()