Created
October 31, 2023 12:55
-
-
Save habibiefaried/72503cdbf11b11940e710419837c2895 to your computer and use it in GitHub Desktop.
Stop all jobs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thread.getAllStackTraces().keySet().each() { | |
if (it.name.contains('Stress')) { | |
println "Stopping $it.name" | |
it.stop() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment