Closed
Description
Alexis SOUMAGNE opened BATCH-2114 and commented
In STOPPING status should be considered as a "running" status.
The endTime is null until job status is STOPPED. Which means that the job did not recieved interuption signal yet.
Simply the code should be :
public boolean isRunning() {
return this == STARTING || this == STARTED || this == STOPPING;
}
Affects: 2.2.2