From caa8d5ecd481fcd39aa97c7a8a61bbac41c0893d Mon Sep 17 00:00:00 2001 From: dongwenjuan Date: Wed, 27 Jul 2016 10:57:16 +0800 Subject: [PATCH] add `debug=True` in consumer 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 --- tests/consumer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/consumer.py b/tests/consumer.py index 6618f615..9b3230fe 100644 --- a/tests/consumer.py +++ b/tests/consumer.py @@ -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__': -- 2.16.6