Skip to content
Snippets Groups Projects
Commit 51dc9551 authored by Nicolas Voirol's avatar Nicolas Voirol
Browse files

Interrupt isn't only scoped to Inox

parent ac4ad2f8
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ class InterruptManager(reporter: Reporter) extends Interruptible { ...@@ -21,7 +21,7 @@ class InterruptManager(reporter: Reporter) extends Interruptible {
def now(): Long = System.currentTimeMillis() def now(): Long = System.currentTimeMillis()
reporter.info("") reporter.info("")
if (now() - lastTimestamp.get < exitWindow) { if (now() - lastTimestamp.get < exitWindow) {
reporter.warning("Aborting Inox...") reporter.warning("Aborting...")
System.exit(1) System.exit(1)
} }
else { else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment