diff mercurial/debugcommands.py @ 44335:e41a164db7a9

nodemap: track the maximum revision tracked in the nodemap We need a simple way to detect when the on disk data contains less revision than the index we read from disk. The docket file is meant for this, we just had to start tracking that data. We should also try to detect strip operation, but we will deal with this in later changesets. Right now we are focusing on defining the API for index supporting persistent nodemap. Differential Revision: https://phab.mercurial-scm.org/D7888
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 15 Jan 2020 15:50:14 +0100
parents 6614b301ea58
children 8374b69aef75
line wrap: on
line diff
--- a/mercurial/debugcommands.py	Wed Jan 15 15:50:04 2020 +0100
+++ b/mercurial/debugcommands.py	Wed Jan 15 15:50:14 2020 +0100
@@ -2137,6 +2137,7 @@
         if nm_data is not None:
             docket, data = nm_data
             ui.write((b"uid: %s\n") % docket.uid)
+            ui.write((b"tip-rev: %d\n") % docket.tip_rev)
 
 
 @command(