Django post_save preventing recursion without overriding model save()

you can use update instead of save in the signal handler

queryset.filter(pk=instance.pk).update(....)

Leave a Comment