Skip to content

Commit 9029bfc

Browse files
Update storage.py
1 parent 7e3b1d3 commit 9029bfc

File tree

1 file changed

+2
-0
lines changed
  • src/clusterfuzz/_internal/google_cloud_utils

1 file changed

+2
-0
lines changed

src/clusterfuzz/_internal/google_cloud_utils/storage.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ def list_blobs(self, remote_path, recursive=True, names_only=False):
252252
fields = None
253253

254254
iterations = 0
255+
next_page_token = None
255256
while True:
256257
iterations += 1
257258
iterator = bucket.list_blobs(
@@ -262,6 +263,7 @@ def list_blobs(self, remote_path, recursive=True, names_only=False):
262263
'name': blob.name,
263264
'updated': blob.updated,
264265
'size': blob.size,
266+
'next_page_token': next_page_token,
265267
}
266268

267269
yield properties

0 commit comments

Comments
 (0)