Revert "xl: CreateFile shouldn't prematurely timeout (#11854)"

This reverts commit 922c7b57f5.
This commit is contained in:
Harshavardhana
2021-03-23 23:47:13 -07:00
parent e80239a661
commit 21cfc4aa49
3 changed files with 7 additions and 9 deletions

View File

@@ -287,10 +287,10 @@ func (s *storageRESTServer) CreateFileHandler(w http.ResponseWriter, r *http.Req
s.writeErrorResponse(w, err)
return
}
done := keepHTTPResponseAlive(w)
done(s.storage.CreateFile(r.Context(), volume, filePath, int64(fileSize), r.Body))
w.(http.Flusher).Flush()
err = s.storage.CreateFile(r.Context(), volume, filePath, int64(fileSize), r.Body)
if err != nil {
s.writeErrorResponse(w, err)
}
}
// DeleteVersion delete updated metadata.