Author: nextgens
Date: 2006-05-17 11:14:37 +0000 (Wed, 17 May 2006)
New Revision: 8733
Modified:
trunk/apps/installer/src/Sha1Test.java
Log:
installer: We increase the number of tries and increase the delay in between
Modified: trunk/apps/installer/src/Sha1Test.java
===================================================================
--- trunk/apps/installer/src/Sha1Test.java 2006-05-17 11:01:46 UTC (rev
8732)
+++ trunk/apps/installer/src/Sha1Test.java 2006-05-17 11:14:37 UTC (rev
8733)
@@ -15,7 +15,7 @@
String filename = (new File(URI2)).getName();
System.out.println("Fetching "+filename);
- while(count<5){
+ while(count<10){
if(count>0)
System.out.println("Attempt "+count);
try{
@@ -27,7 +27,7 @@
}
count++;
try{
- Thread.sleep(2000);
+ Thread.sleep(5000);
}catch(Exception e){
}
}