From e3e0a511b6b9b17f2596214c8974f76a49e31a83 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 12 Jul 2026 11:08:13 +0200 Subject: [PATCH] Handle HTTPNotFound exception when retrieving compute status --- gns3server/controller/project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/controller/project.py b/gns3server/controller/project.py index de201f0f5..f26b1ff5f 100644 --- a/gns3server/controller/project.py +++ b/gns3server/controller/project.py @@ -965,7 +965,7 @@ class Project: compute = self._controller.get_compute(compute_id) if not compute.connected: disconnected.append(compute) - except ControllerError: + except aiohttp.web.HTTPNotFound: log.warning(f"Compute '{compute_id}' not found in controller") return disconnected