Christian Fries created ZEPPELIN-2406: -----------------------------------------
Summary: Unable to abort scala code Key: ZEPPELIN-2406 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2406 Project: Zeppelin Issue Type: Bug Components: zeppelin-server Affects Versions: 0.8.0 Environment: macOS Sierra Reporter: Christian Fries Runnnig the following Scala code (running in an infinite loop), it is not possible to aboard the job: {code} object TimerAnonymous { def oncePerSecond(callback: () => Unit) { while (true) { callback(); Thread sleep 1000 } }; def main(args: Array[String]) { oncePerSecond(() => println("time flies like an arrow...")) }; }; TimerAnonymous.main(Array()) {code} (The code is taken from a Scala tutorial) -- This message was sent by Atlassian JIRA (v6.3.15#6346)