Skip to content

Commit

Permalink
Merge pull request #262 from mulkieran/fix-computation-meta
Browse files Browse the repository at this point in the history
bug fix: calculate total size of metadata from extents
  • Loading branch information
mulkieran authored May 21, 2024
2 parents 8c45a0e + 8c24812 commit 50f550e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testlib/infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def run_check(self):
)

(thin_meta_size, thin_meta_spare_size) = [
sum(x[1] - x[0] for x in entries)
sum(x[1] for x in entries)
for entries in [
written["flex_devs"]["thin_meta_dev"],
written["flex_devs"]["thin_meta_dev_spare"],
Expand Down

0 comments on commit 50f550e

Please sign in to comment.