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
  • Loading branch information
alberto-bortolan committed Dec 3, 2024
1 parent a1f7647 commit 6927740
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 6927740

Please sign in to comment.