Merge pull request #487 from stevvooe/use-pool-in-copy
content: use buffer pool in hash copy
This commit is contained in:
commit
29132c4061
1 changed files with 4 additions and 1 deletions
|
@ -284,7 +284,10 @@ func (cs *Store) Resume(ref string) (*Writer, error) {
|
|||
}
|
||||
defer fp.Close()
|
||||
|
||||
offset, err := io.Copy(digester.Hash(), fp)
|
||||
p := bufPool.Get().([]byte)
|
||||
defer bufPool.Put(p)
|
||||
|
||||
offset, err := io.CopyBuffer(digester.Hash(), fp, p)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue