remove attempt to avoid git syncing with instantiate proxied remotes
It didn't work. Actually, sync was skipping those remotes due to a bug.
This commit is contained in:
parent
60413a2557
commit
bf6b309917
1 changed files with 1 additions and 2 deletions
|
@ -268,8 +268,7 @@ seek' o = startConcurrency transferStages $ do
|
|||
remotes <- syncRemotes (syncWith o)
|
||||
warnSyncContentTransition o remotes
|
||||
-- Remotes that git can push to and pull from.
|
||||
let gitremotes = nubBy sameGitRepo $
|
||||
filter Remote.gitSyncableRemote remotes
|
||||
let gitremotes = filter Remote.gitSyncableRemote remotes
|
||||
-- Remotes that contain annex object content.
|
||||
contentremotes <- filter (\r -> Remote.uuid r /= NoUUID)
|
||||
<$> filterM (not <$$> liftIO . getDynamicConfig . remoteAnnexIgnore . Remote.gitconfig) remotes
|
||||
|
|
Loading…
Reference in a new issue