mirror of
https://github.com/minio/minio.git
synced 2025-04-04 11:50:36 -04:00
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:
parent
514b2d6f12
commit
76b3d3c559
@ -769,6 +769,7 @@ func keepHTTPReqResponseAlive(w http.ResponseWriter, r *http.Request) (resp func
|
|||||||
} else {
|
} else {
|
||||||
w.Write([]byte{0})
|
w.Write([]byte{0})
|
||||||
}
|
}
|
||||||
|
close(doneCh)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
defer close(doneCh)
|
defer close(doneCh)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user