[Commented On] D12616: debuglock: make the command more useful in non-interactive mode
baymax (Baymax, Your Personal Patch-care Companion)
phabricator at mercurial-scm.org
Tue May 24 14:34:49 UTC 2022
baymax added a comment.
baymax updated this revision to Diff 33429.
✅ refresh by Heptapod after a successful CI run (🐙 💚)
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D12616?vs=33414&id=33429
BRANCH
default
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/af03a1e1/attachment-0002.html>
More information about the Mercurial-patches
mailing list