D3578: state: set canonical=True to write deterministically

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Mon May 21 13:40:44 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG18c6d8b565bf: state: set canonical=True to write deterministically (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3578?vs=8733&id=8852

REVISION DETAIL
  https://phab.mercurial-scm.org/D3578

AFFECTED FILES
  mercurial/state.py

CHANGE DETAILS

diff --git a/mercurial/state.py b/mercurial/state.py
--- a/mercurial/state.py
+++ b/mercurial/state.py
@@ -57,7 +57,7 @@
         we use third-party library cbor to serialize data to write in the file.
         """
         with self._repo.vfs(self.fname, 'wb', atomictemp=True) as fp:
-            cbor.dump(self.opts, fp)
+            cbor.dump(self.opts, fp, canonical=True)
 
     def _read(self):
         """reads the state file and returns a dictionary which contain



To: pulkit, #hg-reviewers, martinvonz
Cc: mercurial-devel


More information about the Mercurial-devel mailing list