--- a/hgext/remotefilelog/remotefilelogserver.py Mon May 15 22:03:39 2023 +0200
+++ b/hgext/remotefilelog/remotefilelogserver.py Tue May 16 10:43:36 2023 +0200
@@ -172,7 +172,7 @@
visit.append(fp)
if scmutil.istreemanifest(repo):
- for entry in repo.store.datafiles():
+ for entry in repo.store.data_entries():
if not entry.is_revlog:
continue
if entry.is_manifestlog:
@@ -181,7 +181,7 @@
# Return .d and .i files that do not match the shallow pattern
match = state.match
if match and not match.always():
- for entry in repo.store.datafiles():
+ for entry in repo.store.data_entries():
if not entry.is_revlog:
continue
if not state.match(entry.target_id):