summaryrefslogtreecommitdiff
path: root/Assistant/DaemonStatus.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-11-11 00:26:29 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-11-11 00:26:29 -0400
commitd9f5cc9f73ea046fcd2b59b5e75d4600593ac05b (patch)
treee692b07c2a474bb48481e42474a1af3a5e57e22c /Assistant/DaemonStatus.hs
parent1062d35cf793718617561bb112ffbc61de8a6801 (diff)
use trustExclude
Diffstat (limited to 'Assistant/DaemonStatus.hs')
-rw-r--r--Assistant/DaemonStatus.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Assistant/DaemonStatus.hs b/Assistant/DaemonStatus.hs
index 5e1ecab3c..a93f4105a 100644
--- a/Assistant/DaemonStatus.hs
+++ b/Assistant/DaemonStatus.hs
@@ -46,7 +46,7 @@ calcSyncRemotes :: Annex [Remote]
calcSyncRemotes = do
rs <- filterM (repoSyncable . Remote.repo) =<<
concat . Remote.byCost <$> Remote.enabledRemoteList
- alive <- snd <$> trustPartition DeadTrusted (map Remote.uuid rs)
+ alive <- trustExclude DeadTrusted (map Remote.uuid rs)
let good r = Remote.uuid r `elem` alive
return $ filter good rs