# HG changeset patch # User Pierre-Yves David # Date 2019-08-07 18:10:24 # Node ID da643cadec901566bc97f089adb2c7374d180882 # Parent 127d57e950e0fe50f2833737b5937c06ff581231 rawdata: update caller in wireprotov2server We update callers incrementally because this help bisecting failures. This was useful during development, so we expect it might be useful again in the future. diff --git a/mercurial/wireprotov2server.py b/mercurial/wireprotov2server.py --- a/mercurial/wireprotov2server.py +++ b/mercurial/wireprotov2server.py @@ -937,7 +937,7 @@ def changesetdata(repo, proto, revisions followingdata = [] if b'revision' in fields: - revisiondata = cl.revision(node, raw=True) + revisiondata = cl.rawdata(node) followingmeta.append((b'revision', len(revisiondata))) followingdata.append(revisiondata)