Browse Source

Fix/file stream azure blob (#6196)

tags/0.6.14
Jyong 1 year ago
parent
commit
678ad6b7eb
No account linked to committer's email address
1 changed files with 2 additions and 3 deletions
  1. 2
    3
      api/extensions/storage/azure_storage.py

+ 2
- 3
api/extensions/storage/azure_storage.py View File

@@ -38,9 +38,8 @@ class AzureStorage(BaseStorage):
def generate(filename: str = filename) -> Generator:
blob = client.get_blob_client(container=self.bucket_name, blob=filename)
blob_data = blob.download_blob()
for chunk in blob_data.chunks():
yield from chunk
return generate()
yield from blob_data.chunks()
return generate(filename)

def download(self, filename, target_filepath):
client = self._sync_client()

Loading…
Cancel
Save