Changes between Version 1 and Version 2 of Ticket #34968
- Timestamp:
- Nov 13, 2023, 5:29:17 AM (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34968 – Description
v1 v2 1 The `MultiPartParser` silently ignores parts of which the http header fields exceed 1024 bytes. 1 The `MultiPartParser` silently ignores parts of which the http header fields exceed 1024 bytes. This causes file uploads to 'ignore' the attached file without receiving any type of error or exception. 2 2 3 3 This is caused by the 1024 value being hardcoded here https://github.com/django/django/blob/main/django/http/multipartparser.py#L743