D2405: wireproto: sort response to listkeys
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Thu Mar 1 16:30:57 UTC 2018
indygreg updated this revision to Diff 6251.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D2405?vs=6140&id=6251
REVISION DETAIL
https://phab.mercurial-scm.org/D2405
AFFECTED FILES
mercurial/wireproto.py
CHANGE DETAILS
diff --git a/mercurial/wireproto.py b/mercurial/wireproto.py
--- a/mercurial/wireproto.py
+++ b/mercurial/wireproto.py
@@ -916,7 +916,7 @@
@wireprotocommand('listkeys', 'namespace')
def listkeys(repo, proto, namespace):
- d = repo.listkeys(encoding.tolocal(namespace)).items()
+ d = sorted(repo.listkeys(encoding.tolocal(namespace)).items())
return bytesresponse(pushkeymod.encodekeys(d))
@wireprotocommand('lookup', 'key')
To: indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list