« Return to Thread: SF.net SVN: jikesrvm:[15702] cattrack/trunk/app/services/test_run_importer. rb

SF.net SVN: jikesrvm:[15702] cattrack/trunk/app/services/test_run_importer. rb

by dgrove-oss :: Rate this Message:

Reply to Author | View in Thread

Revision: 15702
          http://jikesrvm.svn.sourceforge.net/jikesrvm/?rev=15702&view=rev
Author:   dgrove-oss
Date:     2009-06-08 16:25:14 +0000 (Mon, 08 Jun 2009)

Log Message:
-----------
bump "log file too large" limit from 30Mb to 40Mb.

Modified Paths:
--------------
    cattrack/trunk/app/services/test_run_importer.rb

Modified: cattrack/trunk/app/services/test_run_importer.rb
===================================================================
--- cattrack/trunk/app/services/test_run_importer.rb 2009-06-08 14:34:10 UTC (rev 15701)
+++ cattrack/trunk/app/services/test_run_importer.rb 2009-06-08 16:25:14 UTC (rev 15702)
@@ -40,7 +40,7 @@
         end
         logger.info("Unzipped file to #{temp_filename}. Size= #{File.size(temp_filename)}")
 
-        raise ImportException.new("Unzipping #{f} produced too large a file #{File.size(temp_filename)}") unless File.size(temp_filename) < (1024 * 1024 * 30)
+        raise ImportException.new("Unzipping #{f} produced too large a file #{File.size(temp_filename)}") unless File.size(temp_filename) < (1024 * 1024 * 40)
 
         test_run = TestRunBuilder.create_from(temp_filename)
         TestRunAnalysis.perform_analysis(test_run)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects
_______________________________________________
Jikesrvm-commits mailing list
Jikesrvm-commits@...
https://lists.sourceforge.net/lists/listinfo/jikesrvm-commits

 « Return to Thread: SF.net SVN: jikesrvm:[15702] cattrack/trunk/app/services/test_run_importer. rb