From 30ea1eeea1274fdf333559c40fc8bc1496de75cc Mon Sep 17 00:00:00 2001 From: jkuensem <jkuensem@physik.uni-bielefeld.de> Date: Thu, 8 Oct 2020 17:55:52 +0200 Subject: [PATCH] TMSS-404: make status properties non-cached again --- SAS/TMSS/src/tmss/tmssapp/models/specification.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SAS/TMSS/src/tmss/tmssapp/models/specification.py b/SAS/TMSS/src/tmss/tmssapp/models/specification.py index 86d0adc1f6f..9c91d47b594 100644 --- a/SAS/TMSS/src/tmss/tmssapp/models/specification.py +++ b/SAS/TMSS/src/tmss/tmssapp/models/specification.py @@ -646,7 +646,7 @@ class SchedulingUnitBlueprint(NamedCommon): else: return None - @cached_property + @property def status(self): """ Return the schedulingunit blueprint status which is derived from the taskblueprint status (which is derived @@ -954,7 +954,7 @@ class TaskBlueprint(NamedCommon): else: return None - @cached_property + @property def status(self): """ Return the taskblueprint status which is derived from the subtasks status -- GitLab