diff options
-rw-r--r-- | priv/schema/rabbit.schema | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema index bafda2e9e9..a7a4f8dc23 100644 --- a/priv/schema/rabbit.schema +++ b/priv/schema/rabbit.schema @@ -1756,7 +1756,7 @@ end}. {validator, "byte", "Integer is not 0<=i<=255", fun(Int) when is_integer(Int) -> - Int >= 0 andalso Int < 255 + Int >= 0 andalso Int =< 255 end}. {validator, "dir_writable", "Cannot create file in dir", |