Skip to content

Commit f05501d

Browse files
committed
task orders
1 parent 310d725 commit f05501d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

app/host/transient_tasks.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ def _prerequisites(self):
3838
"""
3939
Only prerequisite is that the host match task is not processed.
4040
"""
41-
return {"Host match": "not processed", "Cutout download": "processed"}
41+
return {"Host match": "not processed",
42+
"Cutout download": "processed",
43+
"Transient MWEBV": "processed"}
4244

4345
@property
4446
def task_name(self):
@@ -92,7 +94,8 @@ def _prerequisites(self):
9294
"""
9395
Only prerequisite is that the transient MWEBV task is not processed.
9496
"""
95-
return {"Transient MWEBV": "not processed"}
97+
return {"Transient MWEBV": "not processed",
98+
"Transient information": "processed"}
9699

97100
@property
98101
def task_name(self):
@@ -615,7 +618,8 @@ class TransientInformation(TransientTaskRunner):
615618
"""Task Runner to gather information about the Transient"""
616619

617620
def _prerequisites(self):
618-
return {"Transient information": "not processed"}
621+
return {"Transient information": "not processed",
622+
"Cutout download": "processed"}
619623

620624
@property
621625
def task_name(self):

0 commit comments

Comments
 (0)