summaryrefslogtreecommitdiff
path: root/Command
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-02-06 14:19:44 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-02-06 20:42:49 -0400
commita81297065dd2f1a4fb59abcddec852414174200e (patch)
treef3647141301964474c008c89084568d0faa84208 /Command
parenta6c4b107716c61a48fbf1b0431abbcc330c7fd44 (diff)
use "known" instead of "visible"
I think it's clearer, also it's the same length as "local" :)
Diffstat (limited to 'Command')
-rw-r--r--Command/Status.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Command/Status.hs b/Command/Status.hs
index a1d4eea08..5facaab9b 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