We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04f075 commit ae75a98Copy full SHA for ae75a98
server/src/test/java/org/elasticsearch/common/util/concurrent/AbstractAsyncTaskTests.java
@@ -59,12 +59,14 @@ protected void runInternal() {
59
try {
60
barrier1.await();
61
} catch (Exception e) {
62
+ logger.error("barrier1 interrupted", e);
63
fail("interrupted");
64
}
65
count.incrementAndGet();
66
67
barrier2.await();
68
69
+ logger.error("barrier2 interrupted", e);
70
71
72
if (shouldRunThrowException) {
@@ -112,6 +114,7 @@ protected void runInternal() {
112
114
113
115
barrier.await();
116
117
+ logger.error("barrier interrupted", e);
118
119
120
0 commit comments