Commit b39c9d60 authored by Patrick Bajao's avatar Patrick Bajao

Update vendored workhorse to v8.64.2

parents b7bc1c07 104d1a4e
# Changelog for gitlab-workhorse # Changelog for gitlab-workhorse
## v8.64.2
### Security
- Stop logging when path is excluded
https://gitlab.com/gitlab-org/gitlab-workhorse/-/merge_requests/
## v8.64.1 ## v8.64.1
### Security ### Security
......
...@@ -37,7 +37,6 @@ func (s *Static) ServeExisting(prefix urlprefix.Prefix, cache CacheMode, notFoun ...@@ -37,7 +37,6 @@ func (s *Static) ServeExisting(prefix urlprefix.Prefix, cache CacheMode, notFoun
// %20 in their name. // %20 in their name.
relativePath, err := s.validatePath(prefix.Strip(r.URL.Path)) relativePath, err := s.validatePath(prefix.Strip(r.URL.Path))
if err != nil { if err != nil {
log.WithRequest(r).WithError(err).Error()
notFoundHandler.ServeHTTP(w, r) notFoundHandler.ServeHTTP(w, r)
return return
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment