storage/blob/s3: Correctly handle PutObject errors

Closes #387.
This commit is contained in:
fox.cpp 2021-08-21 22:16:49 +03:00
parent cbb64b6127
commit 34094c17e6
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -114,6 +114,9 @@ func (s *Store) Create(key string) (module.Blob, error) {
go func() {
_, err := s.cl.PutObject(context.TODO(), s.bucketName, s.objectPrefix+key, pr, -1, minio.PutObjectOptions{})
if err != nil {
pr.CloseWithError(fmt.Errorf("s3 PutObject: %w", err))
}
errCh <- err
}()