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)
|
remotes <- syncRemotes (syncWith o)
|
||||||
warnSyncContentTransition o remotes
|
warnSyncContentTransition o remotes
|
||||||
-- Remotes that git can push to and pull from.
|
-- Remotes that git can push to and pull from.
|
||||||
let gitremotes = nubBy sameGitRepo $
|
let gitremotes = filter Remote.gitSyncableRemote remotes
|
||||||
filter Remote.gitSyncableRemote remotes
|
|
||||||
-- Remotes that contain annex object content.
|
-- Remotes that contain annex object content.
|
||||||
contentremotes <- filter (\r -> Remote.uuid r /= NoUUID)
|
contentremotes <- filter (\r -> Remote.uuid r /= NoUUID)
|
||||||
<$> filterM (not <$$> liftIO . getDynamicConfig . remoteAnnexIgnore . Remote.gitconfig) remotes
|
<$> filterM (not <$$> liftIO . getDynamicConfig . remoteAnnexIgnore . Remote.gitconfig) remotes
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue