Skip to content

Commit

Permalink
disable the MD5 calculation when retrieving the list of files from lo…
Browse files Browse the repository at this point in the history
…cal storage (#831)
  • Loading branch information
alberto-bortolan authored Jan 8, 2025
1 parent e400ffb commit 98d9b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion medusa/storage/local_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async def _list_blobs(self, prefix=None):
AbstractBlob(
str(p.relative_to(self.root_dir)),
os.stat(self.root_dir / p).st_size,
self._md5(self.root_dir / p),
None, # was self._md5(self.root_dir / p), see Task1 for issue #829
datetime.datetime.fromtimestamp(os.stat(self.root_dir / p).st_mtime),
None
)
Expand Down

0 comments on commit 98d9b6f

Please sign in to comment.