@@ -143,7 +143,7 @@ def __init__(self, connection_settings, server_id,
143143 is_mariadb = False ,
144144 annotate_rows_event = False ,
145145 ignore_decode_errors = False ,
146- use_crc32 = False ,):
146+ verify_checksum = False ,):
147147 """
148148 Attributes:
149149 ctl_connection_settings: Connection settings for cluster holding
@@ -185,7 +185,7 @@ def __init__(self, connection_settings, server_id,
185185 used with 'is_mariadb'
186186 ignore_decode_errors: If true, any decode errors encountered
187187 when reading column data will be ignored.
188- use_crc32 : If true, use CRC32 4-byte for events validation, ensuring data integrity .
188+ verify_checksum : If true, verify events read from the binary log by examining checksums .
189189 """
190190
191191 self .__connection_settings = connection_settings
@@ -208,7 +208,7 @@ def __init__(self, connection_settings, server_id,
208208 only_events , ignored_events , filter_non_implemented_events )
209209 self .__fail_on_table_metadata_unavailable = fail_on_table_metadata_unavailable
210210 self .__ignore_decode_errors = ignore_decode_errors
211- self .__use_crc32 = use_crc32
211+ self .__verify_checksum = verify_checksum
212212
213213 # We can't filter on packet level TABLE_MAP and rotate event because
214214 # we need them for handling other operations
@@ -539,7 +539,7 @@ def fetchone(self):
539539 self .__freeze_schema ,
540540 self .__fail_on_table_metadata_unavailable ,
541541 self .__ignore_decode_errors ,
542- self .__use_crc32 ,)
542+ self .__verify_checksum ,)
543543
544544 if binlog_event .event_type == ROTATE_EVENT :
545545 self .log_pos = binlog_event .event .position
0 commit comments