apache / accumulo

Apache Accumulo
https://accumulo.apache.org
Apache License 2.0
1.07k stars 445 forks source link

Fixes a Fate bug (part 2) #4994

Closed kevinrr888 closed 4 weeks ago

kevinrr888 commented 1 month ago

fixes an issue with how Fates WorkFinder handles InterruptedExceptions which can lead to an infinite error loop and leave the WorkFinder broken

I'm wondering if this is a problem elsewhere as there are many places that handle an InterruptedException the same way

} catch (InterruptedException e) {
    Thread.currentThread().interrupt();
    ...
}

The conversation which brought about this PR was from:

4965

This PR in conjunction with #4965 close #4906