Skip to content

Commit 13e37d8

Browse files
authored
Increase Awaitility timeout to 5s in AbstractAsyncThreadContextTestBase (#3956)
1 parent ed45a45 commit 13e37d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AbstractAsyncThreadContextTestBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ protected void testAsyncLogWritesToLog(final ContextImpl contextImpl, final Mode
177177
for (int i = 0; i < LINE_COUNT; i++) {
178178
// buffer may be full
179179
if (i >= 128) {
180-
waitAtMost(500, TimeUnit.MILLISECONDS)
180+
waitAtMost(5, TimeUnit.SECONDS)
181181
.pollDelay(10, TimeUnit.MILLISECONDS)
182182
.until(() -> remainingCapacity.getAsLong() > 0);
183183
}

0 commit comments

Comments
 (0)