D10672: remotefilelog: use the correct capability when using getfilestype threaded
klevesque (Kévin Lévesque)
phabricator at mercurial-scm.org
Wed May 5 15:10:57 UTC 2021
klevesque created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
The functon was overlooked when the capability was renamed
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D10672
AFFECTED FILES
hgext/remotefilelog/fileserverclient.py
CHANGE DETAILS
diff --git a/hgext/remotefilelog/fileserverclient.py b/hgext/remotefilelog/fileserverclient.py
--- a/hgext/remotefilelog/fileserverclient.py
+++ b/hgext/remotefilelog/fileserverclient.py
@@ -272,7 +272,7 @@
def _getfiles_threaded(
remote, receivemissing, progresstick, missed, idmap, step
):
- remote._callstream(b"getfiles")
+ remote._callstream(b"x_rfl_getfiles")
pipeo = remote._pipeo
pipei = remote._pipei
To: klevesque, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list