Unverified Commit e775b34e authored by Binbin's avatar Binbin Committed by GitHub
Browse files

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'
```
parent 627c610f
...@@ -70,6 +70,9 @@ ...@@ -70,6 +70,9 @@
{ {
"const": "warning" "const": "warning"
}, },
{
"const": "nothing"
},
{ {
"const": "unknown" "const": "unknown"
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment