Skip to content

Commit

Permalink
Fix blockstore-purge delete_files_in_range_us metric (#33512)
Browse files Browse the repository at this point in the history
This field was being filled with the wrong value
  • Loading branch information
steviez committed Oct 5, 2023
1 parent fac0c3c commit 666ce9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ledger/src/blockstore/blockstore_purge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Blockstore {
("write_batch_us", purge_stats.write_batch as i64, i64),
(
"delete_files_in_range_us",
purge_stats.write_batch as i64,
purge_stats.delete_files_in_range as i64,
i64
)
);
Expand Down

0 comments on commit 666ce9b

Please sign in to comment.