Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Not A Problem
-
2.2.1
-
None
-
JVM: 1.7.0_51, Windows 7
Description
I'm not able to stop the script execution pressing the "Interrupt" button even if the "Allow interruption" menu button was set.
This is the code:
while(1) {
println "something"
sleep(500)
}
I have to close the GroovyConsole and close also the terminal to stop the script execution.
I have made another try:
@ThreadInterrupt
import groovy.transform.ThreadInterrupt
while(1) {
println "something"
sleep(500)
}
No effect! The "Interrupt" button is still not working.