Mercurial > evolve
view MANIFEST.in @ 1593:2f117c299325
evolve: remove meaningless transaction nesting
Before this patch, functions below nest transaction scope, even though
they are invoked only inside a transaction scope created at _solveone().
- _solvebumped()
- _solvedivergent()
- relocate() via _solveunstable() or _solvebumped()
Transaction nesting is useful for localizing "success" (e.g. one scope
per commit inside wider scope for multiple committing).
But such nesting is redundant for _solveone(), because there is no
code path, which causes failure after successfully closing inner
transaction(s).
In addition to it, this nesting makes it complicated to close current
transaction successfully with exception raising inside inner scope,
like "hg shelve" at detection of conflicts. "tr.close()" is required
at each outer scopes for such case.
To remove meaningless transaction nesting, this patch replaces
repo.transaction() in functions above by repo.currenttransaction().
This reuses transaction created at _solveone().
This patch also adds 'assert tr' after getting current running
transaction, to avoid invocation of functions above without
transaction.
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Sat, 23 Jan 2016 06:18:01 +0900 |
parents | 9cdd32b45bba |
children | be85d7ce8536 |
line wrap: on
line source
recursive-include docs/figures *.svg include docs/figures/hgview-example.png include docs/*.rst include docs/*.py include docs/tutorials/*.t include docs/makefile include docs/static/*.svg include hgext/__init__.py include hgext/evolve.py include hgext/pushexperiment.py include hgext/simple4server.py include setup.py include README include COPYING include tests/*.t include tests/*.py include tests/_exc-util.sh include tests/dummyssh exclude tests/test-oldconvert.t exclude tests/test-qsync.t exclude tests/test-drop.t