# HG changeset patch # User Pierre-Yves David # Date 2019-08-07 18:10:24 # Node ID 2d2e35c79ba1c9fe8cf85ef58c747e2f903193b8 # Parent a6808d41d0adae8d40211071c82afb1ba312a5ac 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)