diff mercurial/wireprotov2server.py @ 46062:14ff4929ca8c

sidedata: send the correct revision data for wireproto v2 When no sidedata is present, rawdata() and revision() are the same. But as soon as sidedata is present, the way it is currently stored will change the rawdata and that is not desired here, so switch to the correct data accessor. Differential Revision: https://phab.mercurial-scm.org/D9445
author Joerg Sonnenberger <joerg@bec.de>
date Sat, 28 Nov 2020 15:04:44 +0100
parents 89a2afe31e82
children 71443f742886
line wrap: on
line diff
--- a/mercurial/wireprotov2server.py	Sun Dec 06 14:45:04 2020 +0100
+++ b/mercurial/wireprotov2server.py	Sat Nov 28 15:04:44 2020 +0100
@@ -1049,7 +1049,7 @@
         followingdata = []
 
         if b'revision' in fields:
-            revisiondata = cl.rawdata(node)
+            revisiondata = cl.revision(node)
             followingmeta.append((b'revision', len(revisiondata)))
             followingdata.append(revisiondata)