fix(packages/container): data race when uploading container blobs concurrently (#36524) (#36526)

Backport #36524 by @noeljackson

Fix data race when uploading container blobs concurrently

Co-authored-by: Noel Jackson <n@noeljackson.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
Giteabot
2026-02-04 09:32:26 -08:00
committed by GitHub
co-authored by Noel Jackson wxiaoguang
parent 57ce10c0ca
commit 885f2b89d6
4 changed files with 75 additions and 8 deletions
+4 -4
View File
@@ -63,10 +63,10 @@ func NewBlobUploader(ctx context.Context, id string) (*BlobUploader, error) {
}
return &BlobUploader{
model,
hash,
f,
false,
PackageBlobUpload: model,
MultiHasher: hash,
file: f,
reading: false,
}, nil
}