mirror of https://github.com/apache/nifi.git
NIFI-9347: Changed timeout for tests from 5 seconds to 60. It appears that the timeout was previously 50-60 seconds per test and was reduced in NIFI-9141 to 5 seconds, but 5 seconds causes problems in some environments
This commit is contained in:
parent
f99298f98e
commit
00a96d79e0
|
@ -68,7 +68,7 @@ import static org.junit.jupiter.api.Assertions.assertNull;
|
|||
import static org.junit.jupiter.api.Assertions.assertTrue;
|
||||
|
||||
@DisabledOnOs(OS.WINDOWS)
|
||||
@Timeout(value = 5)
|
||||
@Timeout(value = 60)
|
||||
public class TestLuceneEventIndex {
|
||||
|
||||
private final AtomicLong idGenerator = new AtomicLong(0L);
|
||||
|
|
Loading…
Reference in New Issue