[PATCH 2 of 3 V2] histedit: pop action after the action is completed

Durham Goode durham at fb.com
Fri Mar 10 18:58:04 EST 2017


# HG changeset patch
# User Durham Goode <durham at fb.com>
# Date 1489189411 28800
#      Fri Mar 10 15:43:31 2017 -0800
# Node ID 4046a8f85f7c6b025b986aad9104b73ba2680493
# Parent  0c9a2c16ec96fa56206dbb1199f01dcb4ece7c11
histedit: pop action after the action is completed

We only want to pop the action after the action is completed, since if the
action aborts part way through we want it to remain at the front of the list so
continue/abort will start with it.

Previously we relied on the fact that we only serialized the state file at the
beginning of the action, so the pop wasn't serialized until the next iteration
of the loop. In a future patch we will be adding a large transaction around this
area, which means if we pop the list early it might get serialized if the action
throws a user InterventionRequired error, at which point the action is not in
the list anymore. So let's only pop it once the action is really truly done.

diff --git a/hgext/histedit.py b/hgext/histedit.py
--- a/hgext/histedit.py
+++ b/hgext/histedit.py
@@ -1107,7 +1107,7 @@ def _continuehistedit(ui, repo, state):
     pos = 0
     while state.actions:
         state.write()
-        actobj = state.actions.pop(0)
+        actobj = state.actions[0]
         pos += 1
         ui.progress(_("editing"), pos, actobj.torule(),
                     _('changes'), total)
@@ -1116,6 +1116,7 @@ def _continuehistedit(ui, repo, state):
         parentctx, replacement_ = actobj.run()
         state.parentctxnode = parentctx.node()
         state.replacements.extend(replacement_)
+        state.actions.pop(0)
     state.write()
     ui.progress(_("editing"), None)
 


More information about the Mercurial-devel mailing list