dweiss commented on issue #15051:
URL: https://github.com/apache/lucene/issues/15051#issuecomment-3183272470
You can actually make it predictably fail again by reapplying the patch from
13547 -
```
diff --git
a/lucene/core/src/test/org/apache/lucene/TestMergeSchedulerExternal.java
b/lucene/core/src/test/org/apache/lucene/TestMergeSchedulerExternal.java
index 306bb6bc7d3..0bdddd113f6 100644
--- a/lucene/core/src/test/org/apache/lucene/TestMergeSchedulerExternal.java
+++ b/lucene/core/src/test/org/apache/lucene/TestMergeSchedulerExternal.java
@@ -74,6 +74,10 @@ public class TestMergeSchedulerExternal extends
LuceneTestCase {
@Override
protected void handleMergeException(Throwable t) {
+ try {
+ Thread.sleep(10000);
+ } catch (InterruptedException e) {
+ }
excCalled = true;
if (infoStream.isEnabled("IW")) {
infoStream.message("IW", "TEST: now handleMergeException");
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]