Changes between Initial Version and Version 2 of Ticket #29510


Ignore:
Timestamp:
Jun 25, 2018, 10:05:29 AM (6 years ago)
Author:
Liquid Scorpio
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29510

    • Property Component UncategorizedFile uploads/storage
    • Property Triage Stage UnreviewedAccepted
  • Ticket #29510 – Description

    initial v2  
    11When uploaded file size is greater than `FILE_UPLOAD_MAX_MEMORY_SIZE`, Django uses `TemporaryUploadedFile` to represent the file object. However, when executing `.copy()` on a `QueryDict` containing such a file, the returned object has the file but it is in closed state (`seekable()` is `False`).
    22
    3 **Expected**: File should present in open state (`seekable()` should be `True`)
     3**Expected**: File should be present in open state (`seekable()` should be `True`)
    44
    55Below is a reproducible example and also contains version details:
Back to Top