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

inline-changelog: fix pending transaction visibility when splitting

We move the name back to the expected name of `changelog.i.a`.
parent 3cf9e52f
No related branches found
No related tags found
2 merge requests!864Merge stable into default,!862fix a critical bug when splitting legacy inline changelog with hooks
......@@ -1148,7 +1148,14 @@
)
def _divert_index(self):
return self.index_file + b'.a'
index_file = self.index_file
# when we encounter a legacy inline-changelog, split it. However it is
# important to use the expected filename for pending content
# (<radix>.a) otherwise hooks won't be seeing the content of the
# pending transaction.
if index_file.endswith(b'.s'):
index_file = self.index_file[:-2]
return index_file + b'.a'
def delay(self):
assert not self.is_open
......
......@@ -98,9 +98,7 @@
$ echo b > b
$ hg add b
$ hg commit -m "second changeset"
pre-txn tip rev: 1 (missing-correct-output !)
warning: ignoring unknown working parent 11b63e930bf2! (known-bad-output !)
pre-txn tip rev: 0 (known-bad-output !)
pre-txn tip rev: 1
$ hg verify
checking changesets
checking manifests
......@@ -195,8 +193,7 @@
adding changesets
adding manifests
adding file changes
pre-txn tip rev: 1 (missing-correct-output !)
pre-txn tip rev: 0 (known-bad-output !)
pre-txn tip rev: 1
added 1 changesets with 1 changes to 1 files
$ cd ..
......@@ -289,8 +286,7 @@
remote: adding changesets
remote: adding manifests
remote: adding file changes
remote: pre-txn tip rev: 1 (missing-correct-output !)
remote: pre-txn tip rev: 0 (known-bad-output !)
remote: pre-txn tip rev: 1
remote: added 1 changesets with 1 changes to 1 files
$ cd ..
......
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