local: make Hash function cancelable via context

This commit is contained in:
Nick Craig-Wood 2021-11-09 09:45:10 +00:00
parent e7483b40b3
commit 5e4caa69ce
1 changed files with 1 additions and 1 deletions

View File

@ -903,7 +903,7 @@ func (o *Object) Hash(ctx context.Context, r hash.Type) (string, error) {
return "", fmt.Errorf("hash: failed to open: %w", err)
}
var hashes map[hash.Type]string
hashes, err = hash.StreamTypes(in, hash.NewHashSet(r))
hashes, err = hash.StreamTypes(readers.NewContextReader(ctx, in), hash.NewHashSet(r))
closeErr := in.Close()
if err != nil {
return "", fmt.Errorf("hash: failed to read: %w", err)