Loading src/uws/job/UWSJob.java +9 −4 Original line number Diff line number Diff line Loading @@ -119,7 +119,7 @@ import uws.service.log.UWSLog.LogLevel; * </ul> * * @author Grégory Mantelet (CDS;ARI) * @version 4.1 (10/2014) * @version 4.1 (11/2014) */ public class UWSJob extends SerializableUWSObject { private static final long serialVersionUID = 1L; Loading Loading @@ -1151,9 +1151,14 @@ public class UWSJob extends SerializableUWSObject { }// Otherwise start directly the execution: else{ // Create its corresponding thread: try{ thread = getFactory().createJobThread(this); if (thread == null) throw new NullPointerException("Missing job work ! The thread created by the factory is NULL => The job can't be executed !"); }catch(UWSException ue){ setPhase(ExecutionPhase.ERROR); throw ue; } // Change the job phase: setPhase(ExecutionPhase.EXECUTING); Loading Loading
src/uws/job/UWSJob.java +9 −4 Original line number Diff line number Diff line Loading @@ -119,7 +119,7 @@ import uws.service.log.UWSLog.LogLevel; * </ul> * * @author Grégory Mantelet (CDS;ARI) * @version 4.1 (10/2014) * @version 4.1 (11/2014) */ public class UWSJob extends SerializableUWSObject { private static final long serialVersionUID = 1L; Loading Loading @@ -1151,9 +1151,14 @@ public class UWSJob extends SerializableUWSObject { }// Otherwise start directly the execution: else{ // Create its corresponding thread: try{ thread = getFactory().createJobThread(this); if (thread == null) throw new NullPointerException("Missing job work ! The thread created by the factory is NULL => The job can't be executed !"); }catch(UWSException ue){ setPhase(ExecutionPhase.ERROR); throw ue; } // Change the job phase: setPhase(ExecutionPhase.EXECUTING); Loading