From 2d06293325749c2293e9714ca56c062724614490 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Sat, 15 Aug 2026 14:48:33 +0200 Subject: [PATCH] ... Defaults to False --- cloud/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 11bceea..aeb560a 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -85,7 +85,7 @@ async def cooking_params(): # 2. Run Vision Safety Check & Cook Planner Concurrently try: - if getattr(config, "DEBUG_DANGEROUS_AREA", True): + if getattr(config, "DEBUG_DANGEROUS_AREA", False): print(f"[Debug] Running safety check on predefined image") safety_task = asyncio.to_thread(safety_checker.check_dish_safety, os.path.join(CAMERA_IMAGE_DIR, "dish_0de0ee1dab8949fc8e78796947e24ed3.jpg")) else: