Fixed showing if still running.

This commit is contained in:
Oliver Spohngellert 2016-06-28 15:47:43 -04:00
parent 3d7b40ca98
commit f06952b80a

View File

@ -540,7 +540,7 @@ public final class IngestJobSettingsPanel extends javax.swing.JPanel {
}
boolean previousVersionRun = false;
for (IngestJobInfo ingestJob : ingestJobs) {
if (ingestJob.getStatus() == IngestJobInfo.IngestJobStatusType.CANCELLED) {
if (ingestJob.getStatus() != IngestJobInfo.IngestJobStatusType.COMPLETED) {
continue;
}
long objectId = ingestJob.getObjectId();