diff options
-rw-r--r-- | tests/consumer.py | 2 |
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__': |