Skip to content
Snippets Groups Projects
Commit 1ab0493b authored by Erik Reid's avatar Erik Reid
Browse files

python module apparently validates against schema draft <= 4

parent aeffc250
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,8 @@ CONFIG_SCHEMA = { ...@@ -20,7 +20,8 @@ CONFIG_SCHEMA = {
"timeout": { "timeout": {
"type": "number", "type": "number",
"maximum": 10, # sanity "maximum": 10, # sanity
"exclusiveMinimum": 0 "minimum": 0, # should only be required by < draft 4???
"exclusiveMinimum": True
} }
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment