diff options
Diffstat (limited to 'internal/admin/middleware.go')
| -rw-r--r-- | internal/admin/middleware.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/admin/middleware.go b/internal/admin/middleware.go index 60274ad..8b88c83 100644 --- a/internal/admin/middleware.go +++ b/internal/admin/middleware.go @@ -1,15 +1,13 @@ package admin import ( - "log" "net/http" ) // Hooks middleware to handle requests to the admin repo. func Hooks(adminSvc *Servicer, next http.Handler) http.Handler { return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) { - log.Printf("stuffs about to reload %s", "now") - next.ServeHTTP(rw, req) go adminSvc.Reload() + next.ServeHTTP(rw, req) }) } |