This is an automated email from the ASF dual-hosted git repository.

pkarwasz pushed a commit to branch bnd
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/bnd by this push:
     new f48a1bae5f Increase timeout for AsyncLoggerConfigTest
f48a1bae5f is described below

commit f48a1bae5fadeb65fa5a099e5f478d9b9ef73148
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Wed Oct 4 14:44:31 2023 +0200

    Increase timeout for AsyncLoggerConfigTest
---
 .../java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
 
b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
index 9d9b1f5cc4..baa2fd7b61 100644
--- 
a/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
+++ 
b/log4j-core-test/src/test/java/org/apache/logging/log4j/core/async/AsyncLoggerConfigTest.java
@@ -109,7 +109,7 @@ public class AsyncLoggerConfigTest {
         disruptor.start();
         try {
             config.log(FQCN, FQCN, null, Level.INFO, new SimpleMessage(), 
null);
-            verify(appender, timeout(100).times(1)).append(any());
+            verify(appender, timeout(500).times(1)).append(any());
             verify(filter, times(1)).filter(any());
         } finally {
             disruptor.stop();

Reply via email to