[Updated] D9566: debugdiscovery: fix swapped heads and roots
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Dec 12 07:57:23 UTC 2020
Closed by commit rHG9e24b3d8e896: debugdiscovery: fix swapped heads and roots (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D9566?vs=24185&id=24190
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D9566/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D9566
AFFECTED FILES
mercurial/debugcommands.py
CHANGE DETAILS
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -1058,8 +1058,8 @@
data[b'nb-revs'] = len(all)
data[b'nb-revs-common'] = len(common)
data[b'nb-revs-missing'] = len(missing)
- data[b'nb-missing-heads'] = len(roots_missing)
- data[b'nb-missing-roots'] = len(heads_missing)
+ data[b'nb-missing-heads'] = len(heads_missing)
+ data[b'nb-missing-roots'] = len(roots_missing)
data[b'nb-ini_und'] = len(initial_undecided)
data[b'nb-ini_und-heads'] = len(heads_initial_undecided)
data[b'nb-ini_und-roots'] = len(roots_initial_undecided)
To: marmoute, #hg-reviewers, pulkit
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20201212/46d27b3a/attachment-0002.html>
More information about the Mercurial-patches
mailing list