Show More
@@ -1063,7 +1063,7 b' def wcpprefetch(ui, repo, **kwargs):' | |||
|
1063 | 1063 | # update a revset with a date limit |
|
1064 | 1064 | bgprefetchrevs = revdatelimit(ui, bgprefetchrevs) |
|
1065 | 1065 | |
|
1066 | def anon(): | |
|
1066 | def anon(unused_success): | |
|
1067 | 1067 | if util.safehasattr(repo, b'ranprefetch') and repo.ranprefetch: |
|
1068 | 1068 | return |
|
1069 | 1069 | repo.ranprefetch = True |
@@ -2372,7 +2372,7 b' def handlebookmark(op, inpart):' | |||
|
2372 | 2372 | |
|
2373 | 2373 | if pushkeycompat: |
|
2374 | 2374 | |
|
2375 | def runhook(): | |
|
2375 | def runhook(unused_success): | |
|
2376 | 2376 | for hookargs in allhooks: |
|
2377 | 2377 | op.repo.hook(b'pushkey', **pycompat.strkwargs(hookargs)) |
|
2378 | 2378 |
@@ -436,7 +436,7 b' class cg1unpacker(object):' | |||
|
436 | 436 | |
|
437 | 437 | if changesets > 0: |
|
438 | 438 | |
|
439 | def runhooks(): | |
|
439 | def runhooks(unused_success): | |
|
440 | 440 | # These hooks run when the lock releases, not when the |
|
441 | 441 | # transaction closes. So it's possible for the changelog |
|
442 | 442 | # to have changed since we last saw it. |
@@ -2203,7 +2203,7 b' class localrepository(object):' | |||
|
2203 | 2203 | # fixes the function accumulation. |
|
2204 | 2204 | hookargs = tr2.hookargs |
|
2205 | 2205 | |
|
2206 | def hookfunc(): | |
|
2206 | def hookfunc(unused_success): | |
|
2207 | 2207 | repo = reporef() |
|
2208 | 2208 | if hook.hashook(repo.ui, b'txnclose-bookmark'): |
|
2209 | 2209 | bmchanges = sorted(tr.changes[b'bookmarks'].items()) |
@@ -2615,7 +2615,7 b' class localrepository(object):' | |||
|
2615 | 2615 | l.postrelease.append(callback) |
|
2616 | 2616 | break |
|
2617 | 2617 | else: # no lock have been found. |
|
2618 | callback() | |
|
2618 | callback(True) | |
|
2619 | 2619 | |
|
2620 | 2620 | def lock(self, wait=True): |
|
2621 | 2621 | '''Lock the repository store (.hg/store) and return a weak reference |
@@ -2953,7 +2953,7 b' class localrepository(object):' | |||
|
2953 | 2953 | ) |
|
2954 | 2954 | raise |
|
2955 | 2955 | |
|
2956 | def commithook(): | |
|
2956 | def commithook(unused_success): | |
|
2957 | 2957 | # hack for command that use a temporary commit (eg: histedit) |
|
2958 | 2958 | # temporary commit got stripped before hook release |
|
2959 | 2959 | if self.changelog.hasnode(ret): |
@@ -3399,7 +3399,7 b' class localrepository(object):' | |||
|
3399 | 3399 | self.ui.debug(b'pushing key for "%s:%s"\n' % (namespace, key)) |
|
3400 | 3400 | ret = pushkey.push(self, namespace, key, old, new) |
|
3401 | 3401 | |
|
3402 | def runhook(): | |
|
3402 | def runhook(unused_success): | |
|
3403 | 3403 | self.hook( |
|
3404 | 3404 | b'pushkey', |
|
3405 | 3405 | namespace=namespace, |
@@ -233,7 +233,8 b' class lock(object):' | |||
|
233 | 233 | return self |
|
234 | 234 | |
|
235 | 235 | def __exit__(self, exc_type, exc_value, exc_tb): |
|
236 | self.release() | |
|
236 | success = all(a is None for a in (exc_type, exc_value, exc_tb)) | |
|
237 | self.release(success=success) | |
|
237 | 238 | |
|
238 | 239 | def __del__(self): |
|
239 | 240 | if self.held: |
@@ -408,7 +409,7 b' class lock(object):' | |||
|
408 | 409 | self.acquirefn() |
|
409 | 410 | self._inherited = False |
|
410 | 411 | |
|
411 | def release(self): | |
|
412 | def release(self, success=True): | |
|
412 | 413 | """release the lock and execute callback function if any |
|
413 | 414 | |
|
414 | 415 | If the lock has been acquired multiple times, the actual release is |
@@ -433,7 +434,7 b' class lock(object):' | |||
|
433 | 434 | # at all. |
|
434 | 435 | if not self._parentheld: |
|
435 | 436 | for callback in self.postrelease: |
|
436 | callback() | |
|
437 | callback(success) | |
|
437 | 438 | # Prevent double usage and help clear cycles. |
|
438 | 439 | self.postrelease = None |
|
439 | 440 |
@@ -1572,7 +1572,11 b' class manifestrevlog(object):' | |||
|
1572 | 1572 | reporef = weakref.ref(repo) |
|
1573 | 1573 | manifestrevlogref = weakref.ref(self) |
|
1574 | 1574 | |
|
1575 | def persistmanifestcache(): | |
|
1575 | def persistmanifestcache(success): | |
|
1576 | # Repo is in an unknown state, do not persist. | |
|
1577 | if not success: | |
|
1578 | return | |
|
1579 | ||
|
1576 | 1580 | repo = reporef() |
|
1577 | 1581 | self = manifestrevlogref() |
|
1578 | 1582 | if repo is None or self is None: |
General Comments 0
You need to be logged in to leave comments.
Login now