mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-20 03:45:02 +00:00
This commit replaces all occurrences of Thread.interrupted() with Thread.currentThread().interrupt(). While the former checks and clears the current thread's interrupt flag the latter sets it, which is actually intended. Closes #14798