From f05501d6b15b610cfaf6989b0c1228867b54425c Mon Sep 17 00:00:00 2001 From: David Jones Date: Mon, 29 Apr 2024 07:47:51 -1000 Subject: [PATCH] task orders --- app/host/transient_tasks.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/host/transient_tasks.py b/app/host/transient_tasks.py index a657dd8a..aa2635a7 100644 --- a/app/host/transient_tasks.py +++ b/app/host/transient_tasks.py @@ -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): @@ -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): @@ -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):