From ecbe51c3eabfadb0627a835e3a792b325b7507ed Mon Sep 17 00:00:00 2001 From: Scott Nichols Date: Thu, 31 Mar 2022 08:45:24 -0700 Subject: [PATCH] Update test/integration/http/tap_handler.go --- test/integration/http/tap_handler.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/http/tap_handler.go b/test/integration/http/tap_handler.go index e786630d8..5d69e8140 100644 --- a/test/integration/http/tap_handler.go +++ b/test/integration/http/tap_handler.go @@ -116,6 +116,7 @@ func (t *tapHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { } if t.statusCode > 299 { w.WriteHeader(t.statusCode) + return } rec := httptest.NewRecorder()