#30694: FileResponse does not seek its file source
-----------------------------------------+------------------------
Reporter: Claude Paroz | Owner: nobody
Type: Bug | Status: new
Component: HTTP handling | Version: 2.2
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 0
UI/UX: 0 |
-----------------------------------------+------------------------
I'm not sure this is a bug, but I was bitten by some code today:
{{{
buffer = io.BytesIO()
buffer.write(b'some binary content')
return FileResponse(buffer, filename='somename.bin')
}}}
and the response is empty because the stream position is at the end of the
buffer. I can easily fix that by seeking the buffer myself, but shouldn't
`FileResponse` seek itself in `_set_streaming_content` before calling
`filelike.read`?
--
Ticket URL: <https://code.djangoproject.com/ticket/30694>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/050.868d5f3ce013a3ddf0d61f664826ccc0%40djangoproject.com.