Renames to fix clashes with reserved words.

This commit is contained in:
Martin Smith
2025-02-28 20:00:40 +00:00
parent 3788605127
commit f238f81ba6
6 changed files with 25 additions and 25 deletions

View File

@@ -419,10 +419,10 @@ func (be *Backend) List(ctx context.Context, t backend.FileType, fn func(backend
prefix += "/"
}
max := int32(be.listMaxItems)
maxI := int32(be.listMaxItems)
opts := &azContainer.ListBlobsFlatOptions{
MaxResults: &max,
MaxResults: &maxI,
Prefix: &prefix,
}
lister := be.container.NewListBlobsFlatPager(opts)