Skip to content

Commit

Permalink
Move network timeout handling back in UnroutedHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
Acconut committed Mar 1, 2017
1 parent 74fca8c commit c8b8703
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
13 changes: 1 addition & 12 deletions metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package tusd

import (
"errors"
"net"
"sync"
"sync/atomic"
)
Expand Down Expand Up @@ -88,18 +87,8 @@ type simpleHTTPError struct {
}

func simplifyHTTPError(err HTTPError) simpleHTTPError {
var msg string
// Errors for read timeouts contain too much information which is not
// necessary for us and makes grouping for the metrics harder. The error
// message looks like: read tcp 127.0.0.1:1080->127.0.0.1:53673: i/o timeout
// Therefore, we use a common error message for all of them.
if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
msg = "read tcp: i/o timeout"
} else {
msg = err.Error()
}
return simpleHTTPError{
Message: msg,
Message: err.Error(),
StatusCode: err.StatusCode(),
}
}
Expand Down
9 changes: 9 additions & 0 deletions unrouted_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"errors"
"io"
"log"
"net"
"net/http"
"os"
"regexp"
Expand Down Expand Up @@ -611,6 +612,14 @@ func (handler *UnroutedHandler) sendError(w http.ResponseWriter, r *http.Request
err = ErrNotFound
}

// Errors for read timeouts contain too much information which is not
// necessary for us and makes grouping for the metrics harder. The error
// message looks like: read tcp 127.0.0.1:1080->127.0.0.1:53673: i/o timeout
// Therefore, we use a common error message for all of them.
if netErr, ok := err.(net.Error); ok && netErr.Timeout() {
err = errors.New("read tcp: i/o timeout")
}

statusErr, ok := err.(HTTPError)
if !ok {
statusErr = NewHTTPError(err, http.StatusInternalServerError)
Expand Down

0 comments on commit c8b8703

Please sign in to comment.