You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SchemaRegistry doesn't handle recursive references, for example the following schema crashes with a RecursionError: maximum recursion depth exceeded while calling a Python object while trying to parse...
I quickly checked the code and it seems that references are not held. Instead the code dereferences every single $ref and replaces it with an instance of Schema, so I did not see any practical way of fixing this.
On this case it was easier to work around, by removing the property on one of the models.
The SchemaRegistry doesn't handle recursive references, for example the following schema crashes with a
RecursionError: maximum recursion depth exceeded while calling a Python object
while trying to parse...It looks like support was added to handle recursive properties, but recursive array items is currently not supported.
The text was updated successfully, but these errors were encountered: