Changes between Initial Version and Version 1 of Ticket #33579, comment 13


Ignore:
Timestamp:
Feb 26, 2025, 4:07:45 AM (6 hours ago)
Author:
Mariusz Felisiak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33579, comment 13

    initial v1  
    22> Left some comments on the PR. It still needs tests tweaking, some code adjustments, and documentation about `django.core.exceptions.ObjectNotUpdated` and `NotUpdated`.
    33
    4 TBH, this error is extremely annoying to me. It forces users to catch `DatabaseError` on every `save()` call when you process things asynchronously and don't really care if someone was deleted in the meantime. I'd vote to remove it totally 😉, but realistically we should raise `DoesNotExist` like on `save()` without `update_fields`.
     4TBH, this error is extremely annoying to me. It forces users to catch `DatabaseError` on every `save()` call when you process things asynchronously and don't really care if someone was deleted in the meantime. I'd vote to remove it totally 😉, we don't raise any exception on `save()` without `update_fields`.
Back to Top