fix: missing close on error for keepAlive connections (#13109)

Add missing close when error is reported
before body is done.
This commit is contained in:
Klaus Post 2021-08-30 17:46:46 +02:00 committed by Harshavardhana
parent 6539d782cd
commit 87e4be5a58

View file

@ -769,6 +769,7 @@ func keepHTTPReqResponseAlive(w http.ResponseWriter, r *http.Request) (resp func
} else {
w.Write([]byte{0})
}
close(doneCh)
return
}
defer close(doneCh)