Add better comment

This commit is contained in:
zandercymatics 2025-03-26 09:36:50 -06:00
parent 47e59c57da
commit af22542b94
No known key found for this signature in database
GPG key ID: FF4636ABEC9682B7

View file

@ -64,7 +64,13 @@ class Command(BaseCommand, PopulateScriptTemplate):
self.mass_update_records(PublicContact, filter_condition, fields_to_update, show_record_count=True)
def bulk_update_fields(self, *args, **kwargs):
"""Skip bulk update since we need to manually save each field"""
"""Skip bulk update since we need to manually save each field.
Our EPP logic is tied to an override of .save(), and this also associates
with our caching logic for this area of the code.
Since bulk update does not trigger .save() for each field, we have to
call it manually.
"""
return None
def update_record(self, record: PublicContact):