This is an automated email from the ASF dual-hosted git repository.
krathbun pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git
The following commit(s) were added to refs/heads/main by this push:
new 94167151e2 Fixes a Fate bug: (#4994)
94167151e2 is described below
commit 94167151e2de1be87ac60e25751edf1b557d3a3b
Author: Kevin Rathbun <[email protected]>
AuthorDate: Mon Oct 21 10:14:23 2024 -0400
Fixes a Fate bug: (#4994)
fixes an issue with how Fates WorkFinder handles InterruptedExceptions
which can lead to an infinite error loop and leave the WorkFinder broken
---
core/src/main/java/org/apache/accumulo/core/fate/Fate.java | 1 -
1 file changed, 1 deletion(-)
diff --git a/core/src/main/java/org/apache/accumulo/core/fate/Fate.java
b/core/src/main/java/org/apache/accumulo/core/fate/Fate.java
index d7c711a20a..1df4c36eec 100644
--- a/core/src/main/java/org/apache/accumulo/core/fate/Fate.java
+++ b/core/src/main/java/org/apache/accumulo/core/fate/Fate.java
@@ -110,7 +110,6 @@ public class Fate<T> {
break;
}
} catch (InterruptedException e) {
- Thread.currentThread().interrupt();
throw new IllegalStateException(e);
}
}