mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-23 05:06:43 +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
|
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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue