mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +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