Skip to content
Snippets Groups Projects
Commit fe7d7917ceb5 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

upgrade: rename UPGRADE_FILELOG to UPGRADE_FILELOGS

They are multiple filelog to upgrade, so this seems more accurate.

Differential Revision: https://phab.mercurial-scm.org/D9466
parent 744ea3c4f41b
No related merge requests found
......@@ -716,6 +716,6 @@
UPGRADE_CHANGELOG = object()
UPGRADE_MANIFEST = object()
UPGRADE_FILELOG = object()
UPGRADE_FILELOGS = object()
UPGRADE_ALL_REVLOGS = frozenset(
......@@ -720,6 +720,6 @@
UPGRADE_ALL_REVLOGS = frozenset(
[UPGRADE_CHANGELOG, UPGRADE_MANIFEST, UPGRADE_FILELOG]
[UPGRADE_CHANGELOG, UPGRADE_MANIFEST, UPGRADE_FILELOGS]
)
......@@ -753,7 +753,7 @@
return UPGRADE_CHANGELOG in revlogfilter
elif entry.endswith(b'00manifest.i'):
return UPGRADE_MANIFEST in revlogfilter
return UPGRADE_FILELOG in revlogfilter
return UPGRADE_FILELOGS in revlogfilter
def _clonerevlogs(
......
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