Skip to content

Commit

Permalink
Merge branch 'main' into torch-lr-schedulers
Browse files Browse the repository at this point in the history
  • Loading branch information
AkshitaB authored Jul 11, 2023
2 parents 9338c06 + 3a19688 commit 7c365fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tango/integrations/gs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def _fetch_blob(blob: storage.Blob):
max_workers=self.NUM_CONCURRENT_WORKERS, thread_name_prefix="GSClient.download()-"
) as executor:
download_futures = []
for blob in bucket.list_blobs(self.bucket_name, prefix=artifact.artifact_path):
for blob in bucket.list_blobs(prefix=artifact.artifact_path):
download_futures.append(executor.submit(_fetch_blob, blob))
for future in concurrent.futures.as_completed(download_futures):
future.result()
Expand Down

0 comments on commit 7c365fd

Please sign in to comment.