From 6235211860b5b3794dfe9e64bc33856dfad21897 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 10 May 2018 00:12:23 -0700 Subject: cleanups --- golang/gen/restapi/configure_fatcat.go | 25 ++----------------------- 1 file changed, 2 insertions(+), 23 deletions(-) (limited to 'golang/gen/restapi/configure_fatcat.go') diff --git a/golang/gen/restapi/configure_fatcat.go b/golang/gen/restapi/configure_fatcat.go index 2ec7e366..d4923b64 100644 --- a/golang/gen/restapi/configure_fatcat.go +++ b/golang/gen/restapi/configure_fatcat.go @@ -1,6 +1,6 @@ // This file is safe to edit. Once it exists it will not be overwritten -// XXX: this file isn't actually used +// NB: this file isn't actually used package restapi @@ -13,10 +13,6 @@ import ( runtime "github.com/go-openapi/runtime" middleware "github.com/go-openapi/runtime/middleware" graceful "github.com/tylerb/graceful" - "github.com/carbocation/interpose" - "github.com/carbocation/interpose/adaptors" - //"github.com/getsentry/raven-go" - "github.com/meatballhat/negroni-logrus" "git.archive.org/bnewbold/fatcat/golang/gen/restapi/operations" ) @@ -77,22 +73,5 @@ func setupMiddlewares(handler http.Handler) http.Handler { // The middleware configuration happens before anything, this middleware also applies to serving the swagger.json document. // So this is a good place to plug in a panic handling middleware, logging and metrics func setupGlobalMiddleware(handler http.Handler) http.Handler { - - middle := interpose.New() - - // sentry and upstream - //middle.UseHandler(sentry.Recovery(raven.DefaultClient, false)) - - // logging - negroniMiddleware := negronilogrus.NewMiddleware() - middle.Use(adaptors.FromNegroni(negroniMiddleware)) - - // add clacks - middle.UseHandler(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) { - rw.Header().Set("X-Clacks-Overhead:", "GNU Aaron Swartz, John Perry Barlow") - })) - - middle.UseHandler(handler) - - return middle + return handler } -- cgit v1.2.3