This is an automated email from the ASF dual-hosted git repository.
houston pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 558d2eceebd Revert "Fix uncaught AlreadyClosedException in Overseer
election"
558d2eceebd is described below
commit 558d2eceebdaf0f0bfe1ecc4a61b41d562a1dfec
Author: Houston Putman <[email protected]>
AuthorDate: Fri Feb 21 10:46:55 2025 -0600
Revert "Fix uncaught AlreadyClosedException in Overseer election"
This reverts commit 46c34a4a66fe25d67d6a8b66d7061e1b29701f8e.
---
solr/core/src/java/org/apache/solr/cloud/OverseerTaskProcessor.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/solr/core/src/java/org/apache/solr/cloud/OverseerTaskProcessor.java
b/solr/core/src/java/org/apache/solr/cloud/OverseerTaskProcessor.java
index f196d804911..b56ed04f0f9 100644
--- a/solr/core/src/java/org/apache/solr/cloud/OverseerTaskProcessor.java
+++ b/solr/core/src/java/org/apache/solr/cloud/OverseerTaskProcessor.java
@@ -502,8 +502,6 @@ public class OverseerTaskProcessor implements Runnable,
Closeable {
} catch (InterruptedException e) {
success = false;
Thread.currentThread().interrupt();
- } catch (AlreadyClosedException ignored) {
- success = false;
} finally {
timerContext.stop();
if (success) {