Actions
Defect #23614
openMercurial: Impossible to work with repositories, which contain hidden revisions (Evolve extension enabled)
Status:
New
Priority:
Normal
Assignee:
-
Category:
SCM
Target version:
-
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Affected version:
Description
Repository page shows this error:
Error accessing the repository: hg exited with non-zero status: 255
scm log contains:
abort: hidden revision '7386'! (use --hidden to access hidden revisions)
Updated by Andrey Gorbunov over 8 years ago
Evolve docs: https://www.mercurial-scm.org/doc/evolution/
Updated by Andrey Gorbunov over 8 years ago
Issue happens because of fetching changesets in batches - it takes last known revision from the DB and starts to retrieve logs in batches by 100 revisions.
Accidentally right end of the interval hits hidden revision (since it is just start number + 100) and makes hg to raise an exception.
Actions