Submitter | phabricator |
---|---|
Date | Jan. 8, 2021, 6:45 p.m. |
Message ID | <differential-rev-PHID-DREV-q2mrqrby7hrj32e3c5ck-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/48004/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/upgrade_utils/actions.py b/mercurial/upgrade_utils/actions.py --- a/mercurial/upgrade_utils/actions.py +++ b/mercurial/upgrade_utils/actions.py @@ -467,6 +467,12 @@ downgrades = [] for fv in allformatvariant: + if fv.name == b'compression': + # If there is a compression change between repository + # and config, destination repository compression will change + # and current compression will be removed. + if fv.fromrepo(repo) != fv.fromconfig(repo): + downgrades.append(fv) # format variant exist in repo but does not exist in new repository # config if fv.fromrepo(repo) and not fv.fromconfig(repo):