Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert variable name change
  • Loading branch information
tanyasethi-msft committed Feb 8, 2024
commit 786a821052c09d45949511229074d536abbf0048
4 changes: 2 additions & 2 deletions sdk/storage/azblob/pageblob/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ func (pb *Client) UploadPagesFromURL(ctx context.Context, source string, sourceO

// ClearPages frees the specified pages from the page blob.
// For more information, see https://docs.microsoft.com/rest/api/storageservices/put-page.
func (pb *Client) ClearPages(ctx context.Context, httpRange blob.HTTPRange, options *ClearPagesOptions) (ClearPagesResponse, error) {
func (pb *Client) ClearPages(ctx context.Context, rnge blob.HTTPRange, options *ClearPagesOptions) (ClearPagesResponse, error) {
clearOptions := &generated.PageBlobClientClearPagesOptions{
Range: exported.FormatHTTPRange(httpRange),
Range: exported.FormatHTTPRange(rnge),
}

leaseAccessConditions, cpkInfo, cpkScopeInfo, sequenceNumberAccessConditions, modifiedAccessConditions := options.format()
Expand Down