short-circuit as soon as enough remotes are verified to have a file

This commit is contained in:
Joey Hess 2010-10-25 21:15:29 -04:00
parent eea140c90d
commit 68e2687661

View file

@ -111,6 +111,9 @@ checkRemoveKey key = do
then return True then return True
else notEnoughCopies need have bad else notEnoughCopies need have bad
findcopies need have (r:rs) bad = do findcopies need have (r:rs) bad = do
if (have >= need)
then return True
else do
haskey <- Remotes.inAnnex r key haskey <- Remotes.inAnnex r key
case (haskey) of case (haskey) of
Right True -> findcopies need (have+1) rs bad Right True -> findcopies need (have+1) rs bad