Skip to content
Snippets Groups Projects
Commit 919c3230 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

check upon stage state flag (thread state can be reset)

parent be1f92ae
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ abstract class AbstractRunnableStage implements Runnable {
try {
do {
executeStage();
} while (!Thread.currentThread().isInterrupted());
} while (!stage.shouldBeTerminated());
} catch (TerminateException e) {
this.stage.terminate();
stage.owningContext.abortConfigurationRun();
......
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