Skip to content
Snippets Groups Projects
Commit 5ac2e4c8 authored by Stepan Sindelar's avatar Stepan Sindelar
Browse files

[GR-8314] Make MessageDigest in RDeparse thread local.

PullRequest: fastr/1405
parents 1dc656bc c89519e0
No related branches found
No related tags found
No related merge requests found
......@@ -350,7 +350,7 @@ public class RDeparse {
}
}
private static MessageDigest digest = null;
private static ThreadLocal<MessageDigest> digestTheadLocal = new ThreadLocal<>();
private Path emitToFile(String qualifiedFunctionName, String deparsePath) throws IOException, NoSuchAlgorithmException {
Path tmpDir = Paths.get(deparsePath);
......@@ -358,8 +358,10 @@ public class RDeparse {
Path path;
if (FastROptions.EmitTmpHashed.getBooleanValue()) {
MessageDigest digest = digestTheadLocal.get();
if (digest == null) {
digest = MessageDigest.getInstance("SHA-256");
digestTheadLocal.set(digest);
}
String printHexBinary = Utils.toHexString(digest.digest(sb.toString().getBytes()));
assert printHexBinary.length() > 10;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment