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
Path matching appears to be incorrectly matching operations where the operation template provided in the OpenAPI definition matches the end of the requested path.
For example, if the operation in the YAML template is
/thing1/thing2::
get:
and the requested path is /a/b/c/thing1/thing2, then the OpenApiDocumentProvider.GetOperationPathTemplate method will erroneously return the operation as a match for the request.
The text was updated successfully, but these errors were encountered:
jongeorge1
changed the title
Path matching will match a partial path rather than return a 404
Path matching will incorrectly match a request which ends with a valid operation path to that operation rather than return a 404
May 21, 2020
Path matching appears to be incorrectly matching operations where the operation template provided in the OpenAPI definition matches the end of the requested path.
For example, if the operation in the YAML template is
and the requested path is
/a/b/c/thing1/thing2
, then theOpenApiDocumentProvider.GetOperationPathTemplate
method will erroneously return the operation as a match for the request.The text was updated successfully, but these errors were encountered: