mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-30 06:52:01 +08:00
Fix/file stream azure blob (#6196)
This commit is contained in:
parent
63e34e5227
commit
678ad6b7eb
@ -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…
x
Reference in New Issue
Block a user