Author: boisvert
Date: Tue Dec  9 17:50:11 2008
New Revision: 724953

URL: http://svn.apache.org/viewvc?rev=724953&view=rev
Log:
BUILDR-214: buildr is stuck uploading to sftp repository - change RW_CHUNK_SIZE 
from 1MB downto 128K

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=724953&r1=724952&r2=724953&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr/core/transports.rb (original)
+++ incubator/buildr/trunk/lib/buildr/core/transports.rb Tue Dec  9 17:50:11 
2008
@@ -40,7 +40,7 @@
   end
 
   # How many bytes to read/write at once.
-  RW_CHUNK_SIZE = 2 ** 20 #:nodoc:
+  RW_CHUNK_SIZE = 128 * 1024 #:nodoc:
 
   class << self
 


Reply via email to