File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/DIRAC/TransformationSystem/Service Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 13
13
from DIRAC .ConfigurationSystem .Client .Helpers .Operations import Operations
14
14
from DIRAC .TransformationSystem .Client import TransformationFilesStatus
15
15
from DIRAC .WorkloadManagementSystem .Client import JobStatus
16
+ from DIRAC .RequestManagementSystem .Client .Request import Request
17
+ from DIRAC .RequestManagementSystem .Client .Operation import Operation
16
18
17
19
18
20
transTypes = list (six .string_types ) + list (six .integer_types )
19
21
20
22
__RCSID__ = "$Id$"
21
23
22
- TASKS_STATE_NAMES = ["TotalCreated" , "Created" ] + JobStatus .JOB_STATES
24
+ TASKS_STATE_NAMES = ["TotalCreated" , "Created" ] + sorted (
25
+ set (JobStatus .JOB_STATES ) | set (Request .ALL_STATES ) | set (Operation .ALL_STATES )
26
+ )
23
27
FILES_STATE_NAMES = ["PercentProcessed" , "Total" ] + TransformationFilesStatus .TRANSFORMATION_FILES_STATES
24
28
25
29
You can’t perform that action at this time.
0 commit comments