job worker thread to prevent deadlocks

This commit is contained in:
2025-02-07 11:50:43 -06:00
parent 17e54ea4aa
commit 30d27f8a68
+1
View File
@@ -35,6 +35,7 @@ public class JobThread implements Runnable {
public static void startJobThread(AbstractJob job){
JobThread jobThread = new JobThread(job);
Thread thread = new Thread(jobThread);
thread.setName("JOB THREAD: " + job.getWorkerID());
thread.start();
}
}