Skip to content

Commit

Permalink
task orders
Browse files Browse the repository at this point in the history
  • Loading branch information
djones1040 committed Apr 29, 2024
1 parent 310d725 commit f05501d
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/host/transient_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ def _prerequisites(self):
"""
Only prerequisite is that the host match task is not processed.
"""
return {"Host match": "not processed", "Cutout download": "processed"}
return {"Host match": "not processed",
"Cutout download": "processed",
"Transient MWEBV": "processed"}

@property
def task_name(self):
Expand Down Expand Up @@ -92,7 +94,8 @@ def _prerequisites(self):
"""
Only prerequisite is that the transient MWEBV task is not processed.
"""
return {"Transient MWEBV": "not processed"}
return {"Transient MWEBV": "not processed",
"Transient information": "processed"}

@property
def task_name(self):
Expand Down Expand Up @@ -615,7 +618,8 @@ class TransientInformation(TransientTaskRunner):
"""Task Runner to gather information about the Transient"""

def _prerequisites(self):
return {"Transient information": "not processed"}
return {"Transient information": "not processed",
"Cutout download": "processed"}

@property
def task_name(self):
Expand Down

0 comments on commit f05501d

Please sign in to comment.