Skip to content
Snippets Groups Projects
Commit 511a6266 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

phases: emit phases to pushkey protocol in deterministic order

An upcoming test will report exact bytes sent over the wire protocol.
Without this change, the ordering of phases listkey data is
non-deterministic.
parent aa836f56
No related branches found
No related tags found
No related merge requests found
......@@ -116,6 +116,7 @@
error,
smartset,
txnutil,
util,
)
allphases = public, draft, secret = range(3)
......@@ -386,7 +387,8 @@
def listphases(repo):
"""List phases root for serialization over pushkey"""
keys = {}
# Use ordered dictionary so behavior is deterministic.
keys = util.sortdict()
value = '%i' % draft
for root in repo._phasecache.phaseroots[draft]:
keys[hex(root)] = value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment