diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-16 11:36:27 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-11-16 11:37:47 +0100 |
commit | a8c470bc7974a07dbbb3e449f6b6f14ce1b3ada1 (patch) | |
tree | eaae4880c15861e7f43e3ae7879535955425bde0 | |
parent | 69bec127118635666bcbca237aafe0772a8172d2 (diff) | |
download | sonarqube-a8c470bc7974a07dbbb3e449f6b6f14ce1b3ada1.tar.gz sonarqube-a8c470bc7974a07dbbb3e449f6b6f14ce1b3ada1.zip |
Improve reliability of RestartTest as Oracle init is slow
Creation of all Oracle tables can be more than 5 minutes
in our QA environment.
-rw-r--r-- | it/it-tests/src/test/java/it/serverSystem/RestartTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it/it-tests/src/test/java/it/serverSystem/RestartTest.java b/it/it-tests/src/test/java/it/serverSystem/RestartTest.java index cbb6abb5e90..57875624b04 100644 --- a/it/it-tests/src/test/java/it/serverSystem/RestartTest.java +++ b/it/it-tests/src/test/java/it/serverSystem/RestartTest.java @@ -50,7 +50,7 @@ public class RestartTest { @Rule public ExpectedException thrown = ExpectedException.none(); @Rule - public TestRule globalTimeout = new DisableOnDebug(Timeout.seconds(300L)); + public TestRule globalTimeout = new DisableOnDebug(Timeout.seconds(900L)); @After public void stop() { |