Comments
Patch
@@ -440,28 +440,26 @@
# get lock as we might write phase data
wlock = lock = None
- locked = False
try:
# bundle2 push may receive a reply bundle touching bookmarks or other
# things requiring the wlock. Take it now to ensure proper ordering.
maypushback = pushop.ui.configbool('experimental', 'bundle2.pushback')
if (not _forcebundle1(pushop)) and maypushback:
wlock = pushop.repo.wlock()
lock = pushop.repo.lock()
- locked = True
+ pushop.trmanager = transactionmanager(pushop.repo,
+ 'push-response',
+ pushop.remote.url())
except IOError as err:
if err.errno != errno.EACCES:
raise
# source repo cannot be locked.
# We do not abort the push, but just disable the local phase
# synchronisation.
msg = 'cannot lock source repository: %s\n' % err
pushop.ui.debug(msg)
+
try:
- if locked:
- pushop.trmanager = transactionmanager(pushop.repo,
- 'push-response',
- pushop.remote.url())
pushop.repo.checkpush(pushop)
_pushdiscovery(pushop)
if not _forcebundle1(pushop):