Fix: use hard delete when bulk editing custom fields (#8740)

This commit is contained in:
shamoon 2025-01-14 16:47:29 -08:00 committed by GitHub
parent 49a96ccee0
commit 765bf1d11c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -180,7 +180,7 @@ def modify_custom_fields(
CustomFieldInstance.objects.filter(
document_id__in=affected_docs,
field_id__in=remove_custom_fields,
).delete()
).hard_delete()
bulk_update_documents.delay(document_ids=affected_docs)