From e775b34e813654ead5be899faa065f1c31753040 Mon Sep 17 00:00:00 2001 From: Binbin Date: Fri, 26 May 2023 14:12:23 +0800 Subject: [PATCH] Add new loglevel nothing to sentinel-config.json (#12235) It was missing in #12223, and the reply-schemas daily was failing: ``` jsonschema.exceptions.ValidationError: 'nothing' is not valid under any of the given schemas Failed validating 'oneOf' in schema[0]['properties']['loglevel']: {'oneOf': [{'const': 'debug'}, {'const': 'verbose'}, {'const': 'notice'}, {'const': 'warning'}, {'const': 'unknown'}]} On instance['loglevel']: 'nothing' ``` --- src/commands/sentinel-config.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/commands/sentinel-config.json b/src/commands/sentinel-config.json index 6e3075f7c..a406125a5 100644 --- a/src/commands/sentinel-config.json +++ b/src/commands/sentinel-config.json @@ -70,6 +70,9 @@ { "const": "warning" }, + { + "const": "nothing" + }, { "const": "unknown" }