Comment 5 for bug 1363348

Revision history for this message
Jason Hobbs (jason-hobbs) wrote : Re: Image uploads from the cli fail when file size is greater than 47406

I can increase the maximum size I can upload by increasing the chunk size in django/http/multipartparser.py. This let's me upload files with content length up to 128kb:

# self._chunk_size = min([2**31-4] + possible_sizes)
        self._chunk_size = 2**17

The error occurs when the content length exceeds the chunk size.