From 600b8aeeb27a9f3b06e4ce57c08dc71c9ab2e913 Mon Sep 17 00:00:00 2001 From: Nicolai Cornelis Date: Fri, 25 Oct 2024 04:46:00 +0200 Subject: [PATCH] Fix wrong minimum int prop Minor adjustments --- schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/schema.json b/schema.json index 908bfdd..e0a2d63 100644 --- a/schema.json +++ b/schema.json @@ -11,6 +11,9 @@ "type": "object", "description": "The user-defined service.", "additionalProperties": false, + "required": [ + "command" + ], "properties": { "command": { "description": "The command the service should execute. This can be any executable instruction that RoadRunner has access to on the server.", @@ -31,7 +34,7 @@ "timeout_stop_sec": { "description": "Timeout for the service stop operation. If it takes longer for this duration for the service to stop, it will be killed. Zero or empty defaults to 5.", "type": "integer", - "minItems": 0, + "minimum": 0, "default": 5 }, "process_num": { @@ -61,10 +64,7 @@ "type": "boolean", "default": false } - }, - "required": [ - "command" - ] + } } } }