##// END OF EJS Templates
large-files: use `running_status` in `updatestandinsbymatch`...
marmoute -
r51032:30277209 default
parent child Browse files
Show More
@@ -691,10 +691,15 b' def updatestandinsbymatch(repo, match):'
691 # It can cost a lot of time (several seconds)
691 # It can cost a lot of time (several seconds)
692 # otherwise to update all standins if the largefiles are
692 # otherwise to update all standins if the largefiles are
693 # large.
693 # large.
694 dirtymatch = matchmod.always()
695 with repo.dirstate.running_status(repo):
694 lfdirstate = openlfdirstate(ui, repo)
696 lfdirstate = openlfdirstate(ui, repo)
695 dirtymatch = matchmod.always()
696 unsure, s, mtime_boundary = lfdirstate.status(
697 unsure, s, mtime_boundary = lfdirstate.status(
697 dirtymatch, subrepos=[], ignored=False, clean=False, unknown=False
698 dirtymatch,
699 subrepos=[],
700 ignored=False,
701 clean=False,
702 unknown=False,
698 )
703 )
699 modifiedfiles = unsure + s.modified + s.added + s.removed
704 modifiedfiles = unsure + s.modified + s.added + s.removed
700 lfiles = listlfiles(repo)
705 lfiles = listlfiles(repo)
General Comments 0
You need to be logged in to leave comments. Login now