Skip to content

Commit

Permalink
fix: Remove explicit consistency level from BatchStatement in Cassand…
Browse files Browse the repository at this point in the history
…raOnlineStore
  • Loading branch information
Bhargav Dodla committed Jan 7, 2025
1 parent 4683447 commit 1a04d2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ def unroll_insertion_tuples() -> Iterable[Tuple[str, bytes, str, datetime]]:
but this way we can call `progress` after each entity is done.
"""
for entity_key, values, timestamp, created_ts in data:
batch = BatchStatement(consistency_level=ConsistencyLevel.QUORUM)
batch = BatchStatement()
entity_key_bin = serialize_entity_key(
entity_key,
entity_key_serialization_version=config.entity_key_serialization_version,
Expand Down

0 comments on commit 1a04d2a

Please sign in to comment.