summaryrefslogtreecommitdiffstats
path: root/doctor_tests/consumer/sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'doctor_tests/consumer/sample.py')
-rw-r--r--doctor_tests/consumer/sample.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/doctor_tests/consumer/sample.py b/doctor_tests/consumer/sample.py
index eaf5fabd..c7dcf4f9 100644
--- a/doctor_tests/consumer/sample.py
+++ b/doctor_tests/consumer/sample.py
@@ -54,7 +54,9 @@ class ConsumerApp(Thread):
@app.route('/failure', methods=['POST'])
def event_posted():
- self.log.info('doctor consumer notified at %s' % time.time())
+ notified_time = time.time()
+ self.log.info('doctor consumer notified at %s' % notified_time)
+ self.consumer.notified_time = notified_time
data = json.loads(request.data.decode('utf8'))
self.log.info('sample consumer received data = %s' % data)
return 'OK'