My client uploads multipart/form-data with transfer-encoding: chunkedand no 
content-length specified.

In 
https://github.com/tomchristie/django-rest-framework/blob/master/rest_framework/request.py#L252
There are lines:

if content_length == 0:
            self._stream = None

I suppose these are called before any content parsers involved, and they 
make any input unavailable for chunked transfer encoding  without 
content-length.

Do i miss something, or chunked uploads are completely not supported?  

-- 
You received this message because you are subscribed to the Google Groups 
"Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-rest-framework+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to