Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/httperrors/httperrors.go')
-rw-r--r--internal/httperrors/httperrors.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/httperrors/httperrors.go b/internal/httperrors/httperrors.go
index 7de3b6bc..d6a9a860 100644
--- a/internal/httperrors/httperrors.go
+++ b/internal/httperrors/httperrors.go
@@ -5,8 +5,9 @@ import (
"net/http"
"gitlab.com/gitlab-org/labkit/correlation"
- "gitlab.com/gitlab-org/labkit/errortracking"
"gitlab.com/gitlab-org/labkit/log"
+
+ "gitlab.com/gitlab-org/gitlab-pages/internal/errortracking"
)
type content struct {
@@ -214,7 +215,7 @@ func Serve500WithRequest(w http.ResponseWriter, r *http.Request, reason string,
"host": r.Host,
"path": r.URL.Path,
}).WithError(err).Error(reason)
- errortracking.Capture(err, errortracking.WithRequest(r), errortracking.WithStackTrace())
+ errortracking.CaptureErrWithReqAndStackTrace(err, r)
serveErrorPage(w, content500)
}