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
When two channels match the same request the method of the request should also be considered before applying the assigned priorities. For example, If I configure two channels A and B with A having higher priority both matching /foo/bar while allowing GET on A and POST on B, then when an incoming /foo/bar is matched the system should check the HTTP method associated with the the request. In the example above if the method happens to be POST then the request should be routed to channel B. The priority should only be applied when both channels are configured to match the POST request.