build: update dependencies

Also:

- azureblob: fix compile after API change in upstream library
This commit is contained in:
Nick Craig-Wood 2022-06-08 17:44:55 +01:00
parent 6c2331ffd7
commit bb6edb3c39
3 changed files with 97 additions and 62 deletions

View file

@ -1763,7 +1763,7 @@ func (o *Object) SetTier(tier string) error {
blob := o.getBlobReference()
ctx := context.Background()
err := o.fs.pacer.Call(func() (bool, error) {
_, err := blob.SetTier(ctx, desiredAccessTier, azblob.LeaseAccessConditions{})
_, err := blob.SetTier(ctx, desiredAccessTier, azblob.LeaseAccessConditions{}, azblob.RehydratePriorityStandard)
return o.fs.shouldRetry(ctx, err)
})