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
Not sure where the issue lies, the example from the documentation works in v2.11.0 but no longer in v2.11.1.
OpenAPI definition won't include that route in v2.11.1, while does in v2.11.0
PowerShell 7.4.5 w IIS
The text was updated successfully, but these errors were encountered:
Fixed by #1454
if you need a quick fix, change line 455 of the file public/Route.ps1:
if ($PodeContext.Server.OpenAPI.Routes -notcontains $OpenApiPath ) { $PodeContext.Server.OpenAPI.Routes += $OpenApiPath }
To:
if ($PodeContext.Server.OpenAPI.Routes -notcontains $Path ) { $PodeContext.Server.OpenAPI.Routes += $Path }
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the Bug
Not sure where the issue lies, the example from the documentation works in v2.11.0 but no longer in v2.11.1.
Steps To Reproduce
... no Error to be found anywhere (at least with IIS and ErrorLog catches everywhere)
Expected Behavior
OpenAPI definition won't include that route in v2.11.1, while does in v2.11.0
Platform
PowerShell 7.4.5 w IIS
The text was updated successfully, but these errors were encountered: