changeset 47724:b0a39b666e2d

largefile: use `update_file` for `synclfdirstate` "n" case This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11166
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Mon, 19 Jul 2021 05:47:33 +0200
parents 0ed2f74f6e3a
children 1f3a87a7a9b1
files hgext/largefiles/lfutil.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py	Mon Jul 19 02:44:11 2021 +0200
+++ b/hgext/largefiles/lfutil.py	Mon Jul 19 05:47:33 2021 +0200
@@ -563,7 +563,9 @@
         if state == b'n':
             if normallookup or mtime < 0 or not repo.wvfs.exists(lfile):
                 # state 'n' doesn't ensure 'clean' in this case
-                lfdirstate.normallookup(lfile)
+                lfdirstate.update_file(
+                    lfile, p1_tracked=True, wc_tracked=True, possibly_dirty=True
+                )
             else:
                 lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=True)
         elif state == b'm':