Author: markt
Date: Wed Jan 13 18:00:24 2010
New Revision: 898862
URL: http://svn.apache.org/viewvc?rev=898862&view=rev
Log:
Up the timeout. 100s isn't always long enough when stepping through why a
failing test.
Modified:
tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java
Modified: tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java?rev=898862&r1=898861&r2=898862&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java (original)
+++ tomcat/trunk/test/org/apache/catalina/startup/TomcatBaseTest.java Wed Jan
13 18:00:24 2010
@@ -118,7 +118,7 @@
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) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]