cds icon indicating copy to clipboard operation
cds copied to clipboard

Implements "Stop all" button

Open jpatovh opened this issue 4 years ago • 3 comments

Hello,

Sometimes, we've a lot of running/blocked workflows, and we want to stop them all. In the UI we've to click one by one to stop them; or do a loop using the CLI.

Maybe we can add a "Stop all" button on top of the left sidebar?

Thx

jpatovh avatar Dec 28 '20 10:12 jpatovh

Hello,

I bump this request, because I've a lot of bloqued run that I need to stop.

I've regularly the need (and I'm not the only one). Do you think you can easily add it?

Thank you :)

cc @yesnault @sguiheux @fsamin @richardlt

jpatovh avatar Jul 04 '21 13:07 jpatovh

example with cdsctl:

i=3854; until [ $i -gt 3888 ]; do;  echo i: $i; cdsctl workflow stop PRJKEY the-workflowName $i; ((i=i+1)); done

yesnault avatar Jul 05 '21 08:07 yesnault