I noticed that by default, all updates in the django admin site are executed as transactions.
I need to: - disable transactions (globally or for a specific administrator) - make a transaction inside the save () method of an object saved through the admin interface
The reason is that I redefined the save () method and notify the non-django external system of the change. However, the external system does not see the update because django has not yet completed the transaction.
Does anyone have any suggestions on how to do this?
source share