Changes between Initial Version and Version 2 of Ticket #36384
- Timestamp:
- May 15, 2025, 10:21:17 AM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36384
- Property Resolution → worksforme
- Property Status new → closed
- Property Easy pickings unset
-
Ticket #36384 – Description
initial v2 5 5 For example with S3 issue it might raise: 6 6 7 ``` 8 ClientError: An error occurred (403) when calling the HeadObject operation: Forbidden 9 ``` 7 `ClientError: An error occurred (403) when calling the HeadObject operation: Forbidden` 10 8 11 9 even when I simply want to get the object without the width and height, like here: 12 10 13 ``` 14 UserAvatar.objects.get(user=user).only('id') 15 ``` 11 `UserAvatar.objects.get(user=user).only('id')` 16 12 17 13 This is in my opinion an unexpected consequence of adding the height_field and width_field to an ImageField.