Skip to content
Snippets Groups Projects
Commit e7e29d3c authored by Nico Vermaas's avatar Nico Vermaas
Browse files

is_summary check a bit sooner, because we may to intercept it before the datamanager engages

parent 8efc689f
No related branches found
No related tags found
1 merge request!350SDC-1313 ancillary dataproducts to dcache (ATDB side)
Pipeline #77627 failed
......@@ -231,7 +231,7 @@ class Task(models.Model):
self.calculated_qualities = qualities.calculate_qualities(self, tasks_for_this_sasid, quality_thresholds)
# nv:20feb2024, check if this task is a summary task
if (self.status != State.STORED.value) & (self.new_status == State.STORED.value):
if (self.status != State.PROCESSED.value) & (self.new_status == State.PROCESSED.value):
self.is_summary = check_if_summary(self)
# nv:20feb2024, same as above, but for backward compatibilty reasons.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment