Do not close HTTP request body in HTTP handler

Signed-off-by: Milos Gajdos <milosthegajdos@gmail.com>
This commit is contained in:
Milos Gajdos 2023-09-22 16:50:30 +01:00
parent 2b76378843
commit 5e6b1b5c98
No known key found for this signature in database
GPG key ID: 01300E5E6D417439
2 changed files with 0 additions and 4 deletions

View file

@ -620,8 +620,6 @@ func (app *App) configureSecret(configuration *configuration.Configuration) {
}
func (app *App) ServeHTTP(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close() // ensure that request body is always closed.
// Prepare the context with our own little decorations.
ctx := r.Context()
ctx = dcontext.WithRequest(ctx, r)

View file

@ -33,8 +33,6 @@ type tagsAPIResponse struct {
// GetTags returns a json list of tags for a specific image name.
func (th *tagsHandler) GetTags(w http.ResponseWriter, r *http.Request) {
defer r.Body.Close()
tagService := th.Repository.Tags(th)
tags, err := tagService.All(th)
if err != nil {