From a81297065dd2f1a4fb59abcddec852414174200e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Mon, 6 Feb 2012 14:19:44 -0400 Subject: [PATCH] use "known" instead of "visible" I think it's clearer, also it's the same length as "local" :) --- Command/Status.hs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Command/Status.hs b/Command/Status.hs index a1d4eea087..5facaab9be 100644 --- a/Command/Status.hs +++ b/Command/Status.hs @@ -66,8 +66,8 @@ slow_stats = , bad_data_size , local_annex_keys , local_annex_size - , visible_annex_keys - , visible_annex_size + , known_annex_keys + , known_annex_size , backend_usage ] @@ -128,12 +128,12 @@ local_annex_keys :: Stat local_annex_keys = stat "local annex keys" $ json show $ S.size <$> cachedKeysPresent -visible_annex_size :: Stat -visible_annex_size = stat "visible annex size" $ json id $ +known_annex_size :: Stat +known_annex_size = stat "known annex size" $ json id $ keySizeSum <$> cachedKeysReferenced -visible_annex_keys :: Stat -visible_annex_keys = stat "visible annex keys" $ json show $ +known_annex_keys :: Stat +known_annex_keys = stat "known annex keys" $ json show $ S.size <$> cachedKeysReferenced tmp_size :: Stat