From 82410f8278e0452a7b17819ea6a7c9e018d3d973 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 13 Jan 2026 10:09:23 -0700 Subject: [PATCH] Return result --- frigate/util/services.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frigate/util/services.py b/frigate/util/services.py index 09caadf41..64d83833d 100644 --- a/frigate/util/services.py +++ b/frigate/util/services.py @@ -548,6 +548,8 @@ def get_jetson_stats() -> Optional[dict[int, dict]]: with open("/sys/devices/platform/gpu.0/load", "r") as f: gpuload = float(f.readline()) / 10 results["gpu"] = f"{gpuload}%" + else: + results["gpu"] = "-" except Exception: return None