summaryrefslogtreecommitdiffstats
path: root/doctor_tests/consumer/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'doctor_tests/consumer/base.py')
-rw-r--r--doctor_tests/consumer/base.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/doctor_tests/consumer/base.py b/doctor_tests/consumer/base.py
index b6c4b34e..e21b0802 100644
--- a/doctor_tests/consumer/base.py
+++ b/doctor_tests/consumer/base.py
@@ -16,6 +16,15 @@ class BaseConsumer(object):
def __init__(self, conf, log):
self.conf = conf
self.log = log
+ self._notified_time = None
+
+ @property
+ def notified_time(self):
+ return self._notified_time
+
+ @notified_time.setter
+ def notified_time(self, notified_time):
+ self._notified_time = notified_time
@abc.abstractmethod
def start(self):