decrease upload chunk size so we don't overflow a buffer in mod_ssl

This commit is contained in:
Mike Bonnet 2007-03-22 18:40:58 -04:00
parent 54cd667959
commit 9aef1e1a04

View file

@ -1333,7 +1333,7 @@ class ClientSession(object):
"""upload a file in chunks using the uploadFile call"""
# XXX - stick in a config or something
start=time.time()
blocksize=204800
blocksize=65536
retries=3
if name is None:
name = os.path.basename(localfile)