We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db8ad4b commit 9976a6fCopy full SHA for 9976a6f
wal/src/table_kv_impl/namespace.rs
@@ -1441,7 +1441,9 @@ fn purge_buckets<T: TableKv>(
1441
for bucket in &buckets {
1442
// Delete all tables of this bucket.
1443
for table_name in &bucket.wal_shard_names {
1444
- table_kv.drop_table(table_name).map_err(Box::new)?;
+ let _ = table_kv.drop_table(table_name).map_err(|e| {
1445
+ error!("Purge buckets drop table failed, table:{table_name}, err:{e}");
1446
+ });
1447
}
1448
1449
// All tables of this bucket have been dropped, we can remove the bucket record
0 commit comments