aboutsummaryrefslogtreecommitdiff
path: root/Command/Status.hs
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 14:19:44 -0400
commite066fa3884b7085278636b7fe042c84c4b6eeafa (patch)
treed60451f87f26c9105d28cf248b64addaf80801ed /Command/Status.hs
parent2385fe3c4cd1a2c33cc27c4e24b6325d5917c1f6 (diff)
use "known" instead of "visible"
I think it's clearer, also it's the same length as "local" :)
Diffstat (limited to 'Command/Status.hs')
-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