D5712: wireprotov2server: use our JSON encoder
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Sat Jan 26 21:53:43 UTC 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGe82288a9556c: wireprotov2server: use our JSON encoder (authored by indygreg, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D5712?vs=13504&id=13512
REVISION DETAIL
https://phab.mercurial-scm.org/D5712
AFFECTED FILES
mercurial/wireprotov2server.py
CHANGE DETAILS
diff --git a/mercurial/wireprotov2server.py b/mercurial/wireprotov2server.py
--- a/mercurial/wireprotov2server.py
+++ b/mercurial/wireprotov2server.py
@@ -23,6 +23,7 @@
narrowspec,
pycompat,
streamclone,
+ templatefilters,
util,
wireprotoframing,
wireprototypes,
@@ -148,8 +149,6 @@
tracker. We then dump the log of all that activity back out to the
client.
"""
- import json
-
# Reflection APIs have a history of being abused, accidentally disclosing
# sensitive data, etc. So we have a config knob.
if not ui.configbool('experimental', 'web.api.debugreflect'):
@@ -175,12 +174,11 @@
frame.payload))
action, meta = reactor.onframerecv(frame)
- states.append(json.dumps((action, meta), sort_keys=True,
- separators=(', ', ': ')))
+ states.append(templatefilters.json((action, meta)))
action, meta = reactor.oninputeof()
meta['action'] = action
- states.append(json.dumps(meta, sort_keys=True, separators=(', ',': ')))
+ states.append(templatefilters.json(meta))
res.status = b'200 OK'
res.headers[b'Content-Type'] = b'text/plain'
To: indygreg, #hg-reviewers, pulkit
Cc: pulkit, mercurial-devel
More information about the Mercurial-devel
mailing list