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:
Joey Hess 2024-06-24 09:35:24 -04:00
parent 60413a2557
commit bf6b309917
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -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