Skip to content

Commit

Permalink
fix: kill the delete_all_data_from_table flag (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjenvey authored Dec 21, 2023
1 parent e36b3fe commit 8c99f47
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion autopush-common/src/db/bigtable/bigtable_client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ impl BigTableClientImpl {
let mut req = DropRowRangeRequest::new();
req.set_name(self.settings.table_name.clone());
req.set_row_key_prefix(row_key.as_bytes().to_vec());
req.set_delete_all_data_from_table(true);
admin
.drop_row_range_async(&req)
.map_err(|e| {
Expand Down

0 comments on commit 8c99f47

Please sign in to comment.