X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=doctor_tests%2Fconsumer%2Fbase.py;h=e21b08026eacd8ec59f71f8ed9ba54e0f60fad5e;hb=631c3f99f0e499edd1adcbc7550dd3d0de393e31;hp=b6c4b34ec0c47bd3e54204e396df7f0ea3c54f72;hpb=5bbd044650de0ab4179101bb3156dd315be9391f;p=doctor.git 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):