We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actually when using this OAPI specification (on quarkus-openapi-generator-server side):
quarkus-openapi-generator-server
{ "openapi": "3.0.3", "info": { "title": "Recursive Example API", "version": "1.0.0" }, "paths": { "/example": { "get": { "summary": "Get Something", "responses": { "200": { "description": "Successful response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Something" } } } } } } } }, "components": { "schemas": { "Something": { "type": "object", "properties": { "someGroup": { "type": "array", "items": { "allOf": [ { "$ref": "#/components/schemas/Something" } ] } } } } } } }
We are getting a StackOverflowException.
StackOverflowException
You can reproduce this one, using my branch https://github.com/mcruzdev/apicurio-codegen/tree/issue-stackoverflow and executing the test testConstraintParameters_allOfSelfRef from an IDE.
testConstraintParameters_allOfSelfRef
The text was updated successfully, but these errors were encountered:
EricWittmann
No branches or pull requests
Actually when using this OAPI specification (on
quarkus-openapi-generator-server
side):We are getting a
StackOverflowException
.You can reproduce this one, using my branch https://github.com/mcruzdev/apicurio-codegen/tree/issue-stackoverflow and executing the test
testConstraintParameters_allOfSelfRef
from an IDE.The text was updated successfully, but these errors were encountered: