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'
```
This commit is contained in:
Binbin 2023-05-26 14:12:23 +08:00 committed by GitHub
parent 627c610f49
commit e775b34e81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,6 +70,9 @@
{
"const": "warning"
},
{
"const": "nothing"
},
{
"const": "unknown"
}