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
When deploying an application that handle /myroute/{my_Params} and invoking it with GET /, it returns an HTTP 500 instead of an HTTP 404 error.
/myroute/{my_Params}
GET /
Example
openapi.yaml :
openapi.yaml
paths: /stocks/{symbol}: get:
curl -v https://mwad60wxk9.execute-api.eu-west-3.amazonaws.com/ * Host mwad60wxk9.execute-api.eu-west-3.amazonaws.com:443 was resolved. ... (redacted for brevity) ... > GET / HTTP/2 > Host: mwad60wxk9.execute-api.eu-west-3.amazonaws.com > User-Agent: curl/8.6.0 > Accept: */* > < HTTP/2 500 < date: Tue, 11 Jun 2024 07:58:13 GMT < content-type: text/plain; charset=utf-8 < content-length: 53 < apigw-requestid: ZMV_Vh-tiGYEJ7Q= < * Connection #0 to host mwad60wxk9.execute-api.eu-west-3.amazonaws.com left intact There is no OpenAPI handler registered for the path /%
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When deploying an application that handle
/myroute/{my_Params}
and invoking it withGET /
, it returns an HTTP 500 instead of an HTTP 404 error.Example
openapi.yaml
:The text was updated successfully, but these errors were encountered: