| commit | 13e37d85ce79b4562a1efff0bcc6a91b9d1529f3 | [log] [tgz] |
|---|---|---|
| author | Kevin Cruz <kcruz28@illinois.edu> | Mon Oct 20 13:54:36 2025 -0500 |
| committer | GitHub <noreply@github.com> | Mon Oct 20 18:54:36 2025 +0000 |
| tree | 58c2ecd75b768cf6fddb71da6ad0fbedbc2894d1 | |
| parent | ed45a45e7dfb4cdfaaa6cd631a88ad3993d64163 [diff] |
Increase Awaitility timeout to 5s in `AbstractAsyncThreadContextTestBase` (#3956)
diff --git a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AbstractAsyncThreadContextTestBase.java b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AbstractAsyncThreadContextTestBase.java index 0274a93..eb6256e 100644 --- a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AbstractAsyncThreadContextTestBase.java +++ b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AbstractAsyncThreadContextTestBase.java
@@ -177,7 +177,7 @@ for (int i = 0; i < LINE_COUNT; i++) { // buffer may be full if (i >= 128) { - waitAtMost(500, TimeUnit.MILLISECONDS) + waitAtMost(5, TimeUnit.SECONDS) .pollDelay(10, TimeUnit.MILLISECONDS) .until(() -> remainingCapacity.getAsLong() > 0); }