build: use context.Background in Azure blob listing pager

This commit is contained in:
sashass1315 2025-10-09 17:12:59 +03:00 committed by GitHub
parent 11208553dd
commit 2ba1178240
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,7 @@ func AzureBlobstoreList(config AzureBlobstoreConfig) ([]*container.BlobItem, err
var blobs []*container.BlobItem var blobs []*container.BlobItem
for pager.More() { for pager.More() {
page, err := pager.NextPage(context.TODO()) page, err := pager.NextPage(context.Background())
if err != nil { if err != nil {
return nil, err return nil, err
} }