mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
This commit forbids the usage of java.security.MessageDigest#clone() in favor of getting a thread local instance using org.elasticsearch.common.hash.MessageDigests. This is to prevent running into java.lang.CloneNotSupportedExceptions for message digest providers that do not support clone. Closes #16543