Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
14f5db64
Commit
14f5db64
authored
Apr 23, 2019
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't log http.ErrAbortHandler panics in sentry
parent
fd81eeb2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
internal/proxy/proxy.go
internal/proxy/proxy.go
+11
-0
No files found.
internal/proxy/proxy.go
View file @
14f5db64
...
...
@@ -47,5 +47,16 @@ func (p *Proxy) ServeHTTP(w http.ResponseWriter, r *http.Request) {
helper
.
AllowResponseBuffering
(
w
)
}
// If the ultimate client disconnects when the response isn't fully written
// to them yet, httputil.ReverseProxy panics with a net/http.ErrAbortHandler
// error. We can catch and discard this to keep the error log clean
defer
func
()
{
if
err
:=
recover
();
err
!=
nil
{
if
err
!=
http
.
ErrAbortHandler
{
panic
(
err
)
}
}
}()
p
.
reverseProxy
.
ServeHTTP
(
w
,
&
req
)
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment