From: markt Date: Wed, 13 Jan 2010 18:00:24 +0000 (+0000) Subject: Up the timeout. 100s isn't always long enough when stepping through why a failing... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=53baa97d7941e5b4db96f3df68b40547f8ef6f9e;p=tomcat7.0 Up the timeout. 100s isn't always long enough when stepping through why a failing test. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@898862 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/org/apache/catalina/startup/TomcatBaseTest.java b/test/org/apache/catalina/startup/TomcatBaseTest.java index 715930d53..0795f02d6 100644 --- a/test/org/apache/catalina/startup/TomcatBaseTest.java +++ b/test/org/apache/catalina/startup/TomcatBaseTest.java @@ -118,7 +118,7 @@ public abstract class TomcatBaseTest extends TestCase { URL url = new URL(path); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); - connection.setReadTimeout(100000); + connection.setReadTimeout(1000000); connection.connect(); int rc = connection.getResponseCode(); if (resHead != null) {