Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

How to cancel node executing command #4704

yngchokim ·

I tried below script.
but I tried cancel the node, but it don't stop.

echo "aaa" | ${groovy: 
def a = System.in.text
return a;
}

How can I stop the node?

  • replies 1
  • views 20
  • stars 0
robinshen ADMIN ·

QB cancels groovy code via thread interruption. However some logic will not respond to interruption. In this case, the only way is to restart the node, and avoid reading text in CI/CD pipeline.