Skip to content

Commit

Permalink
[schema] Corrected wrong ipv4 minLength and maxLength
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Mar 24, 2016
1 parent ecb0181 commit b903c6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions netjsonconfig/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"proto": {"enum": ["static"]},
"family": {"enum": ["ipv4"]},
"address": {
"minLength": 8,
"maxLength": 16,
"minLength": 7,
"maxLength": 15,
"format": "ipv4",
},
"mask": {
Expand Down

0 comments on commit b903c6f

Please sign in to comment.