We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0833605 commit 591d6c5Copy full SHA for 591d6c5
src/clusterfuzz/_internal/google_cloud_utils/storage.py
@@ -1077,8 +1077,7 @@ def get_blobs(cloud_storage_path, recursive=True):
1077
exception_types=_TRANSIENT_ERRORS)
1078
def list_blobs(cloud_storage_path, recursive=True):
1079
"""Return blob names under the given cloud storage path."""
1080
- for blob in _provider().list_blobs(
1081
- cloud_storage_path, recursive=recursive, names_only=True):
+ for blob in _provider().list_blobs(cloud_storage_path, recursive=recursive):
1082
yield blob['name']
1083
1084
0 commit comments