mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
fix(tests): increase wait time to 10 in LogConsumerTests.logs()
This should reduce flakiness
This commit is contained in:
@@ -116,7 +116,7 @@ class LogConsumerTest {
|
||||
Collections.emptyList()
|
||||
);
|
||||
|
||||
Await.until(() -> logs.size() >= 10, null, Duration.ofSeconds(5));
|
||||
Await.until(() -> logs.size() >= 10, null, Duration.ofSeconds(10));
|
||||
receive.blockLast();
|
||||
|
||||
assertThat(logs.stream().filter(m -> m.getLevel().equals(Level.INFO)).count()).isEqualTo(1L);
|
||||
|
||||
Reference in New Issue
Block a user