fix: close file in the Upload func (#30262)

(cherry picked from commit 0ceecfc11ab4851863a5a6bc5e398d2baf7e86f6)
This commit is contained in:
guangwu 2024-04-03 22:58:13 +08:00 committed by Gergely Nagy
parent a53a94e1c2
commit 0eb2105b16
No known key found for this signature in database

View file

@ -44,7 +44,7 @@ func (c *FilesystemClient) Download(ctx context.Context, objects []Pointer, call
if err != nil {
return err
}
defer f.Close()
if err := callback(p, f, nil); err != nil {
return err
}
@ -75,7 +75,7 @@ func (c *FilesystemClient) Upload(ctx context.Context, objects []Pointer, callba
if err != nil {
return err
}
defer f.Close()
_, err = io.Copy(f, content)
return err