summaryrefslogtreecommitdiffstats
path: root/tests/consumer.py
diff options
context:
space:
mode:
authordongwenjuan <dong.wenjuan@zte.com.cn>2016-07-27 10:57:16 +0800
committerdongwenjuan <dong.wenjuan@zte.com.cn>2016-07-27 10:57:16 +0800
commitcaa8d5ecd481fcd39aa97c7a8a61bbac41c0893d (patch)
treea9c825228252b9f35c62abe7ff6142f81008bb36 /tests/consumer.py
parent86d6d5c7f226caea590256bad3493549690c26e7 (diff)
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 <dong.wenjuan@zte.com.cn>
Diffstat (limited to 'tests/consumer.py')
-rw-r--r--tests/consumer.py2
1 files changed, 1 insertions, 1 deletions
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__':