Show More
@@ -691,11 +691,16 b' def updatestandinsbymatch(repo, match):' | |||
|
691 | 691 | # It can cost a lot of time (several seconds) |
|
692 | 692 | # otherwise to update all standins if the largefiles are |
|
693 | 693 | # large. |
|
694 | lfdirstate = openlfdirstate(ui, repo) | |
|
695 | 694 | dirtymatch = matchmod.always() |
|
696 | unsure, s, mtime_boundary = lfdirstate.status( | |
|
697 | dirtymatch, subrepos=[], ignored=False, clean=False, unknown=False | |
|
698 | ) | |
|
695 | with repo.dirstate.running_status(repo): | |
|
696 | lfdirstate = openlfdirstate(ui, repo) | |
|
697 | unsure, s, mtime_boundary = lfdirstate.status( | |
|
698 | dirtymatch, | |
|
699 | subrepos=[], | |
|
700 | ignored=False, | |
|
701 | clean=False, | |
|
702 | unknown=False, | |
|
703 | ) | |
|
699 | 704 | modifiedfiles = unsure + s.modified + s.added + s.removed |
|
700 | 705 | lfiles = listlfiles(repo) |
|
701 | 706 | # this only loops through largefiles that exist (not |
General Comments 0
You need to be logged in to leave comments.
Login now