-
-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
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
Use RedirectSlashes middleware by default Goa mux #3366
Conversation
DeepSource: Test coverage looks always timed out. |
http/mux.go
Outdated
@@ -85,6 +86,7 @@ func NewMuxer() ResolverMuxer { | |||
w.WriteHeader(http.StatusNotFound) | |||
enc.Encode(NewErrorResponse(ctx, fmt.Errorf("404 page not found"))) // nolint:errcheck | |||
})) | |||
r.Use(middleware.RedirectSlashes) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you. Fixed. 3fbf066
This is great, thank you! (I need to fix the build failing for PRs coming from forks) |
#3364 (comment)