Closed TAOXUY closed 2 years ago
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: nareddyt, qiwzhang, TAOXUY
The full list of commands accepted by this bot can be found here.
The pull request process is described here
Right now, the path matcher only match the registered custom verb. If it is unregistered and the trailing segment is wildcard, it will be part of that, causing a mismatch. For example,
/foo/{x=*}
will matches/foo/random:verb
, wherex
is bound torandom:verb
.Add an option to always match the custom verb.