Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix handling of trailing slash to match API Gateway
API Gateway will not match a URI against a route that has a capture group as the last path component if that capture group would be filled with an empty string. Example: With the route: /resource/{name} /resource/bob matches /resource/ does not match Previously local mode would match both URIs to that route, setting the name parameter to an empty string. closes aws#582
- Loading branch information