From 328dcd553da05fa63e72ff3a8cfd2e78ea9ed1f9 Mon Sep 17 00:00:00 2001 From: Karel Srot Date: Tue, 24 Sep 2024 10:50:56 +0200 Subject: [PATCH] changed job status wording --- newa/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newa/cli.py b/newa/cli.py index 185fc9e..dd03810 100644 --- a/newa/cli.py +++ b/newa/cli.py @@ -256,7 +256,7 @@ def _print(indent: int, s: str, end: str = '\n') -> None: # if state was None check of request_uuid if (not state) and getattr( execute_job.execution, "request_uuid", None): - state = 'running' + state = 'executed, not reported' result = getattr(execute_job.execution, "result", "unknown") url = getattr( execute_job.execution, "artifacts_url", "not available")