# | Line 49 | Line 49 | class GetOutput(Actor): | |
---|---|---|
49 | self.all_id =[] | |
50 | for job in self.up_task.jobs: | |
51 | if job.runningJob['status'] in ['SD','E']: | |
52 | < | list_id_done.append(job['id']) |
53 | < | self.all_id.append(job['id']) |
52 | > | list_id_done.append(job['jobId']) |
53 | > | self.all_id.append(job['jobId']) |
54 | check = -1 | |
55 | if self.jobs != 'all': check = len( set(self.jobs).intersection(set(list_id_done)) ) | |
56 | if len(list_id_done)==0 or ( check == 0 ) : |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |