From efbc147f484f5cdc331ae1d300b934334a917a56 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Tue, 25 Aug 2026 19:16:01 +0200 Subject: [PATCH] Default debug to false --- cloud/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 21dd074..e2276d4 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -664,4 +664,4 @@ def odata_metadata(): if __name__ == "__main__": - app.run(debug=getattr(config, "DEBUG", True)) \ No newline at end of file + app.run(debug=getattr(config, "DEBUG", False)) \ No newline at end of file