[Request] [+ ] D11243: remotefilelog: fix what looks like a wrong refactoring
valentin.gatienbaron (Valentin Gatien-Baron)
phabricator at mercurial-scm.org
Tue Aug 3 01:57:20 UTC 2021
valentin.gatienbaron created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
when various store functions started returning a revlog type as the
first element of the tuple.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D11243
AFFECTED FILES
hgext/remotefilelog/remotefilelogserver.py
CHANGE DETAILS
diff --git a/hgext/remotefilelog/remotefilelogserver.py b/hgext/remotefilelog/remotefilelogserver.py
--- a/hgext/remotefilelog/remotefilelogserver.py
+++ b/hgext/remotefilelog/remotefilelogserver.py
@@ -186,7 +186,7 @@
yield (t, u, e, s)
for x in repo.store.topfiles():
- if state.noflatmf and x[0][:11] == b'00manifest.':
+ if state.noflatmf and x[1][:11] == b'00manifest.':
continue
yield x
To: valentin.gatienbaron, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210803/09a069d2/attachment.html>
More information about the Mercurial-patches
mailing list