comparison mercurial/bundle2.py @ 43778:888bd39ed555

lock: pass "success" boolean to _afterlock callbacks This lets the callback decide if it should actually run or not. I suspect that most callbacks (and hooks) *should not* run in this scenario, but I'm trying to not break any existing behavior. `persistmanifestcache`, however, seems actively dangerous to run: we just encountered an exception and the repo is in an unknown state (hopefully a consistent one due to transactions, but this is not 100% guaranteed), and the data we cache may be based on this unknown state. This was observed by our users since we wrap some of the functions that persistmanifestcache calls and it expects that the repo object is in a certain state that we'd set up earlier. If the user hits ctrl-c before we establish that state, we end up crashing there. I'm going to make that extension resilient to this issue, but figured it might be a common issue and should be handled here as well instead of just working around the issue. Differential Revision: https://phab.mercurial-scm.org/D7459
author Kyle Lippincott <spectral@google.com>
date Tue, 19 Nov 2019 18:38:17 -0800
parents 9f70512ae2cf
children c443b9ba6f63
comparison
equal deleted inserted replaced
43777:c8e9a3636abe 43778:888bd39ed555
2370 2370
2371 bookstore.applychanges(op.repo, op.gettransaction(), changes) 2371 bookstore.applychanges(op.repo, op.gettransaction(), changes)
2372 2372
2373 if pushkeycompat: 2373 if pushkeycompat:
2374 2374
2375 def runhook(): 2375 def runhook(unused_success):
2376 for hookargs in allhooks: 2376 for hookargs in allhooks:
2377 op.repo.hook(b'pushkey', **pycompat.strkwargs(hookargs)) 2377 op.repo.hook(b'pushkey', **pycompat.strkwargs(hookargs))
2378 2378
2379 op.repo._afterlock(runhook) 2379 op.repo._afterlock(runhook)
2380 2380