mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-22 20:56:42 +00:00
build: use context.Background in Azure blob listing pager
This commit is contained in:
parent
11208553dd
commit
2ba1178240
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ func AzureBlobstoreList(config AzureBlobstoreConfig) ([]*container.BlobItem, err
|
|||
|
||||
var blobs []*container.BlobItem
|
||||
for pager.More() {
|
||||
page, err := pager.NextPage(context.TODO())
|
||||
page, err := pager.NextPage(context.Background())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue