[Updated] D9749: persistent-nodemap: also list related file as part of the store
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Wed Jan 13 19:42:11 UTC 2021
Closed by commit rHG9ba501c59bbb: persistent-nodemap: also list related file as part of the store (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
This revision was not accepted when it landed; it landed in state "Needs Review".
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D9749?vs=24781&id=24813
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D9749/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D9749
AFFECTED FILES
mercurial/store.py
tests/test-persistent-nodemap.t
CHANGE DETAILS
diff --git a/tests/test-persistent-nodemap.t b/tests/test-persistent-nodemap.t
--- a/tests/test-persistent-nodemap.t
+++ b/tests/test-persistent-nodemap.t
@@ -626,8 +626,10 @@
The persistent nodemap should exist after a streaming clone
$ hg clone -U --stream --config ui.ssh="\"$PYTHON\" \"$TESTDIR/dummyssh\"" ssh://user@dummy/test-repo stream-clone --debug | egrep '00(changelog|manifest)'
+ adding [s] 00manifest.n (70 bytes)
adding [s] 00manifest.i (313 KB)
adding [s] 00manifest.d (452 KB)
+ adding [s] 00changelog.n (70 bytes)
adding [s] 00changelog.i (313 KB)
adding [s] 00changelog.d (360 KB)
$ ls -1 stream-clone/.hg/store/ | egrep '00(changelog|manifest)(\.n|-.*\.nd)'
diff --git a/mercurial/store.py b/mercurial/store.py
--- a/mercurial/store.py
+++ b/mercurial/store.py
@@ -389,7 +389,7 @@
def isrevlog(f, kind, st):
- return kind == stat.S_IFREG and f[-2:] in (b'.i', b'.d')
+ return kind == stat.S_IFREG and f[-2:] in (b'.i', b'.d', b'.n', b'.nd')
class basicstore(object):
To: marmoute, #hg-reviewers
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20210113/320a041c/attachment-0002.html>
More information about the Mercurial-patches
mailing list