Fix blockstore-purge delete_files_in_range_us metric (#33512)

This field was being filled with the wrong value
This commit is contained in:
steviez 2023-10-05 13:34:04 -05:00 committed by GitHub
parent fac0c3c0fc
commit 666ce9b3be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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
)
);