add `debug=True` in consumer 87/17587/1
authordongwenjuan <dong.wenjuan@zte.com.cn>
Wed, 27 Jul 2016 02:57:16 +0000 (10:57 +0800)
committerdongwenjuan <dong.wenjuan@zte.com.cn>
Wed, 27 Jul 2016 02:57:16 +0000 (10:57 +0800)
We need to add the `debug=True` in consumer to get the debug log
to get the time of consumer received the notifier

Change-Id: I90f2f8167a8670e28a3a5bcb5af054d378ef9b5b
Signed-off-by: dongwenjuan <dong.wenjuan@zte.com.cn>
tests/consumer.py

index 6618f61..9b3230f 100644 (file)
@@ -35,7 +35,7 @@ def get_args():
 
 def main():
     args = get_args()
-    app.run(host="0.0.0.0", port=args.port)
+    app.run(host="0.0.0.0", port=args.port, debug=True)
 
 
 if __name__ == '__main__':