diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index 7309e4799e..ae99ed951f 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -74,6 +74,7 @@ type delegateHandler struct { func (h *delegateHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) { if h.delegate != nil { h.delegate.ServeHTTP(w, req) + return } w.WriteHeader(http.StatusNotFound) }