Skip to content

Commit

Permalink
apply code review change
Browse files Browse the repository at this point in the history
  • Loading branch information
nopcoder committed Sep 11, 2023
1 parent 914a53c commit e712b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/block/s3/adapter.go
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ func (a *Adapter) GetPreSignedURL(ctx context.Context, obj block.ObjectPointer,
return "", time.Time{}, block.ErrOperationNotSupported
}

expiry := time.Now().UTC().Add(a.preSignedExpiry)
expiry := time.Now().Add(a.preSignedExpiry)

log := a.log(ctx).WithFields(logging.Fields{
"operation": "GetPreSignedURL",
Expand Down

0 comments on commit e712b20

Please sign in to comment.