remotefilelog: use the correct capability when using getfilestype threaded
authorKévin Lévesque <klevesque@innovmetric.com>
Wed, 05 May 2021 18:26:04 -0400
changeset 47092 102a50746bc5
parent 47091 bc7bdca15e47
child 47093 787ff5d21bcd
remotefilelog: use the correct capability when using getfilestype threaded The functon was overlooked when the capability was renamed Differential Revision: https://phab.mercurial-scm.org/D10673
hgext/remotefilelog/fileserverclient.py
--- a/hgext/remotefilelog/fileserverclient.py	Mon Apr 19 11:22:24 2021 +0200
+++ b/hgext/remotefilelog/fileserverclient.py	Wed May 05 18:26:04 2021 -0400
@@ -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