D11165: largefile: replace the `normallookup` call when creating a new lfdirstate
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Mon Jul 19 14:09:05 UTC 2021
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the newer, more semantic API.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11165
AFFECTED FILES
hgext/largefiles/lfutil.py
CHANGE DETAILS
diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py
--- a/hgext/largefiles/lfutil.py
+++ b/hgext/largefiles/lfutil.py
@@ -229,9 +229,12 @@
if len(standins) > 0:
vfs.makedirs(lfstoredir)
- for standin in standins:
- lfile = splitstandin(standin)
- lfdirstate.normallookup(lfile)
+ with lfdirstate.parentchange():
+ for standin in standins:
+ lfile = splitstandin(standin)
+ lfdirstate.update_file(
+ lfile, p1_tracked=True, wc_tracked=True, possibly_dirty=True
+ )
return lfdirstate
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list