Fine-tune adjustments to experimental caches

Reviewed By: jeanlauliac

Differential Revision: D7185544

fbshipit-source-id: b4b6c363910a80f906260afe49a72d476609ae14
This commit is contained in:
Miguel Jimenez Esun 2018-03-08 04:16:12 -08:00 committed by Facebook Github Bot
parent 8fd56bf2e5
commit a4c417a1c5

View File

@ -30,7 +30,7 @@ function canonicalize(key: string, value: mixed): mixed {
function stableHash(value: mixed) {
return crypto
.createHash('md5')
.createHash('md4')
.update(JSON.stringify(value, canonicalize))
.digest();
}