You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2009/01/06 03:46:23 UTC

svn commit: r731813 - /incubator/buildr/trunk/lib/buildr/core/transports.rb

Author: assaf
Date: Mon Jan  5 18:46:23 2009
New Revision: 731813

URL: http://svn.apache.org/viewvc?rev=731813&view=rev
Log:
Warning that impending doom will come to those who change RW_CHUNK_SIZE without consulting BUILDR-214 first.

Modified:
    incubator/buildr/trunk/lib/buildr/core/transports.rb

Modified: incubator/buildr/trunk/lib/buildr/core/transports.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr/core/transports.rb?rev=731813&r1=731812&r2=731813&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/transports.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/transports.rb Mon Jan  5 18:46:23 2009
@@ -39,7 +39,7 @@
   class NotFoundError < RuntimeError
   end
 
-  # How many bytes to read/write at once.
+  # How many bytes to read/write at once. Do not change without checking BUILDR-214 first.
   RW_CHUNK_SIZE = 128 * 1024 #:nodoc:
 
   class << self