From 3a3dbb50426093de0321ff3b50d479266e741556 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 20 Mar 2018 18:13:16 +0100 Subject: [PATCH] Added TODO --- blender_asset_tracer/pack/s3.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/blender_asset_tracer/pack/s3.py b/blender_asset_tracer/pack/s3.py index e245b90..b8141e2 100644 --- a/blender_asset_tracer/pack/s3.py +++ b/blender_asset_tracer/pack/s3.py @@ -30,6 +30,9 @@ from . import Packer, transfer log = logging.getLogger(__name__) +# TODO(Sybren): compute MD5 sums of queued files in a separate thread, so that +# we can upload a file to S3 and compute an MD5 of another file simultaneously. + def compute_md5(filepath: pathlib.Path) -> str: log.debug('Computing MD5sum of %s', filepath) hasher = hashlib.md5()