diff mercurial/changegroup.py @ 33461:bb72031f0ea8

changegroup: stop returning and recording added nodes in 'cg.apply' cg.apply used to returns the added nodes. Callers doesn't have a use for it anymore, remove the added node and stops recording it in the current operation. This information was added in the current release cycle so no extensions breakage should happens.
author Boris Feld <boris.feld@octobus.net>
date Thu, 13 Jul 2017 21:08:06 +0200
parents ae052d04b89e
children 91f0677dc920 38fc45721334
line wrap: on
line diff
--- a/mercurial/changegroup.py	Thu Jul 13 21:10:55 2017 +0200
+++ b/mercurial/changegroup.py	Thu Jul 13 21:08:06 2017 +0200
@@ -412,7 +412,7 @@
             ret = deltaheads - 1
         else:
             ret = deltaheads + 1
-        return ret, added
+        return ret
 
 class cg2unpacker(cg1unpacker):
     """Unpacker for cg2 streams.