Ensure pending_schema_names is always cleaned up

This commit is contained in:
Graham Esau 2021-03-21 21:43:25 +00:00
parent 803c47bab3
commit 7bcd6a2a65
2 changed files with 24 additions and 39 deletions

View file

@ -23,29 +23,7 @@
],
"properties": {
"recursive": {
"type": "object",
"properties": {
"direct": {
"anyOf": [
{
"$ref": "#/definitions/RecursiveOuter"
},
{
"type": "null"
}
]
},
"indirect": {
"anyOf": [
{
"$ref": "#/definitions/RecursiveInner"
},
{
"type": "null"
}
]
}
}
"$ref": "#/definitions/RecursiveOuter"
}
}
}
@ -79,17 +57,6 @@
}
}
}
},
"RecursiveInner": {
"type": "object",
"required": [
"recursive"
],
"properties": {
"recursive": {
"$ref": "#/definitions/RecursiveOuter"
}
}
}
}
}