From 227157dbc57bb6f87a71a07b44cc7e1f0b213488 Mon Sep 17 00:00:00 2001 From: Ian Grant <ian.conway.grant@gmail.com> Date: Fri, 16 May 2025 18:58:42 -0400 Subject: [PATCH] style: clarify monitoring suspended message with detailed instructions --- run_on_maap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_on_maap.py b/run_on_maap.py index 99c26ee..f1e0376 100644 --- a/run_on_maap.py +++ b/run_on_maap.py @@ -236,7 +236,8 @@ def main( except KeyboardInterrupt: return "exit" else: - print(f"\nMonitoring suspended. Enter 'r' to resubmit, 'x' to exit, or wait {timeout} seconds to resume.") + print("\nMonitoring suspended. Enter 'r' to resubmit failed jobs, " + f"'x' to exit, or wait {timeout} seconds to resume.") try: # wait for user input with timeout signal.signal(signal.SIGALRM, lambda s, f: (_ for _ in ()).throw(TimeoutError())) -- GitLab