outputResultsJSON of Job does not print if there is no schedule

parent 303f9a85
......@@ -62,7 +62,8 @@ class Job(Entity): # inherits from the Entity c
json['id'] = str(self.id)
json['results'] = {}
#json['extraPropertyDict'] = self.extraPropertyDict
# if there is schedule
if self.schedule:
#if the Job has reached an exit, input completion time in the results
if self.schedule[-1][0].type=='Exit':
json['results']['completionTime']=self.schedule[-1][1]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment