Skip to content
Snippets Groups Projects
Commit 33417858 authored by gmantele's avatar gmantele
Browse files

[TAP] Remove debugging messages when executing a synchronous job.

parent 20583282
No related branches found
No related tags found
No related merge requests found
......@@ -107,11 +107,9 @@ public class TAPSyncJob {
boolean timeout = false;
try{
System.out.println("Joining...");
thread.join(tapParams.getExecutionDuration());
if (thread.isAlive()){
timeout = true;
System.out.println("Aborting...");
thread.interrupt();
thread.join(waitForStop);
}
......
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