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 the route is defined as Test/{val1} and val1 is empty, the result is Test (without trailing slash).
Test/{val1}
val1
Test
Trailing slash do matter in some cases.
When the route is defined as Test/{val1} and val1 is empty, the result is Test/ (with trailing slash).
Test/
aspnetcore/src/Http/Routing/test/UnitTests/Template/TemplateBinderTests.cs
Line 60 in 73c82c6
No response
8
Related issue: microsoft/reverse-proxy#2531
The text was updated successfully, but these errors were encountered:
currently experiencing this bug with YARP as well
Sorry, something went wrong.
No branches or pull requests
Is there an existing issue for this?
Describe the bug
When the route is defined as
Test/{val1}
andval1
is empty, the result isTest
(without trailing slash).Trailing slash do matter in some cases.
Expected Behavior
When the route is defined as
Test/{val1}
andval1
is empty, the result isTest/
(with trailing slash).Steps To Reproduce
aspnetcore/src/Http/Routing/test/UnitTests/Template/TemplateBinderTests.cs
Line 60 in 73c82c6
Exceptions (if any)
No response
.NET Version
8
Anything else?
Related issue: microsoft/reverse-proxy#2531
The text was updated successfully, but these errors were encountered: