From e3f77a5744fbade763842c9bdfb4fdae71c760ba Mon Sep 17 00:00:00 2001 From: Oliver Sanders Date: Wed, 4 Dec 2024 17:09:17 +0000 Subject: [PATCH] remove: enable command for stopping workflows (#6514) * A documented use case for `cylc remove` is "orphaning" stuck submissions, e.g. jobs that we can no longer poll or kill due to platform or network issues. * It is conceivable that we might need to do this whilst a workflow is shutting down. --- cylc/flow/network/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cylc/flow/network/schema.py b/cylc/flow/network/schema.py index 84e019b17e..3f6534b418 100644 --- a/cylc/flow/network/schema.py +++ b/cylc/flow/network/schema.py @@ -2161,7 +2161,7 @@ class Meta: description = sstrip(''' Remove one or more task instances from a running workflow. - Valid for: paused, running workflows. + Valid for: paused, running, stopping workflows. ''') resolver = partial(mutator, command='remove_tasks')