From 1ab0493b45a04d0a6e7e601a9e527185d1a8c59a Mon Sep 17 00:00:00 2001 From: Erik Reid <erik.reid@geant.org> Date: Fri, 3 Jan 2020 08:48:26 +0100 Subject: [PATCH] python module apparently validates against schema draft <= 4 --- inventory_provider/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inventory_provider/config.py b/inventory_provider/config.py index 21a78d9b..d36db66d 100644 --- a/inventory_provider/config.py +++ b/inventory_provider/config.py @@ -20,7 +20,8 @@ CONFIG_SCHEMA = { "timeout": { "type": "number", "maximum": 10, # sanity - "exclusiveMinimum": 0 + "minimum": 0, # should only be required by < draft 4??? + "exclusiveMinimum": True } }, -- GitLab