Skip to content

Commit fd1d3ff

Browse files
Updated payload string to reflect sha256
1 parent 49f5a6c commit fd1d3ff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dash/development/build_process.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,7 @@ def digest(self):
9797
logger.info("bundles in %s %s", folder, copies)
9898

9999
for copy in copies:
100-
# note md5 has been replaced with sha256, leaving string 'MD5 (hash)' as is because impacts are unclear
101-
payload[f"MD5 ({copy})"] = compute_hash(self._concat(folder, copy))
100+
payload[f"SHA256 ({copy})"] = compute_hash(self._concat(folder, copy))
102101

103102
with open(self._concat(self.main, "digest.json"), "w", encoding="utf-8") as fp:
104103
json.dump(payload, fp, sort_keys=True, indent=4, separators=(",", ":"))

0 commit comments

Comments
 (0)