From 8dd3af1083442c9372b1367232962b66028546d0 Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Tue, 21 Nov 2023 13:27:05 +0000 Subject: [PATCH] Fix: Toggle debugging off in flask Signed-off-by: Matthew Watkins --- data_extractor/code/esg_data_pipeline/test/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_extractor/code/esg_data_pipeline/test/app.py b/data_extractor/code/esg_data_pipeline/test/app.py index c41573e..389b55d 100644 --- a/data_extractor/code/esg_data_pipeline/test/app.py +++ b/data_extractor/code/esg_data_pipeline/test/app.py @@ -32,4 +32,4 @@ def predict(): if __name__ == "__main__": - app.run(host="0.0.0.0", port=6666, debug=True) + app.run(host="0.0.0.0", port=6666, debug=False)