You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2012/10/16 22:15:50 UTC

svn commit: r1398973 - /incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java

Author: aharui
Date: Tue Oct 16 20:15:50 2012
New Revision: 1398973

URL: http://svn.apache.org/viewvc?rev=1398973&view=rev
Log:
Wait a little longer for precompiles to finish

Modified:
    incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java

Modified: incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java
URL: http://svn.apache.org/viewvc/incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java?rev=1398973&r1=1398972&r2=1398973&view=diff
==============================================================================
--- incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java (original)
+++ incubator/flex/sdk/branches/develop/mustella/java/src/mustella/CompileMustellaSwfs.java Tue Oct 16 20:15:50 2012
@@ -599,7 +599,7 @@ public class CompileMustellaSwfs extends
 			 for (int i=0;i<threads.size();i++) { 
 				try { 
 					t = (Thread) threads.get(i);
-					t.join (180000);
+					t.join (360000); // six minutes to finish a compile before we give up
 
 				} catch (Exception ee) {
 					ee.printStackTrace();