Skip to content

v0.2.50..v0.2.51 changeset JobStatusManagerImpl.java

Garret Voltz edited this page Jan 15, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/job/JobStatusManagerImpl.java b/hoot-services/src/main/java/hoot/services/job/JobStatusManagerImpl.java
index 1865bbd..7490a0a 100644
--- a/hoot-services/src/main/java/hoot/services/job/JobStatusManagerImpl.java
+++ b/hoot-services/src/main/java/hoot/services/job/JobStatusManagerImpl.java
@@ -71,7 +71,7 @@ public class JobStatusManagerImpl implements JobStatusManager {
             newJobStatus.setResourceId(job.getMapId());
             Timestamp ts = new Timestamp(System.currentTimeMillis());  //Is this UTC?
             newJobStatus.setStart(ts);
-            newJobStatus.setParentId(job.getParentId());
+            newJobStatus.setTags(job.getTags());
 
             // We only get the external command count because they take the longest to run so they have
             // the biggest impact on the math for job progress
Clone this wiki locally