From e8051f365b74077b570e7ba47576da5ca25fea2f Mon Sep 17 00:00:00 2001 From: Peter Amstutz Date: Wed, 19 Apr 2023 15:44:11 -0400 Subject: [PATCH] 20257: Tweak runtime status for 'activity' Arvados-DCO-1.1-Signed-off-by: Peter Amstutz --- sdk/cwl/arvados_cwl/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/cwl/arvados_cwl/executor.py b/sdk/cwl/arvados_cwl/executor.py index 92894b36c9..22e3f1fdeb 100644 --- a/sdk/cwl/arvados_cwl/executor.py +++ b/sdk/cwl/arvados_cwl/executor.py @@ -281,7 +281,7 @@ The 'jobs' API is no longer supported. runtime_status = current.get('runtime_status', {}) original_updatemessage = updatemessage = runtime_status.get(kind, "") - if not updatemessage: + if kind == "activity" or not updatemessage: updatemessage = message # Subsequent messages tacked on in detail -- 2.30.2