[Updated] D12616: debuglock: make the command more useful in non-interactive mode
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Tue May 24 14:51:15 UTC 2022
Closed by commit rHG883be4c74d54: debuglock: make the command more useful in non-interactive mode (authored by marmoute).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12616?vs=33429&id=33439
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D12616/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D12616
AFFECTED FILES
mercurial/debugcommands.py
CHANGE DETAILS
diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -2201,7 +2201,19 @@
except error.LockHeld:
raise error.Abort(_(b'lock is already held'))
if len(locks):
- ui.promptchoice(_(b"ready to release the lock (y)? $$ &Yes"))
+ try:
+ if ui.interactive():
+ prompt = _(b"ready to release the lock (y)? $$ &Yes")
+ ui.promptchoice(prompt)
+ else:
+ msg = b"%d locks held, waiting for signal\n"
+ msg %= len(locks)
+ ui.status(msg)
+ while True: # XXX wait for a signal
+ time.sleep(0.1)
+ except KeyboardInterrupt:
+ msg = b"signal-received releasing locks\n"
+ ui.status(msg)
return 0
finally:
release(*locks)
To: marmoute, #hg-reviewers, Alphare
Cc: mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20220524/1b767216/attachment-0002.html>
More information about the Mercurial-patches
mailing list