From cfc7de9c77a622480863ef3a1887d281f8ffc1c0 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 25 Nov 2025 16:37:18 +0100 Subject: [PATCH] Do not poll services if they are in recoveryMode --- dashboard/src/views/ServicesView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/ServicesView.vue b/dashboard/src/views/ServicesView.vue index 21ac114c4..0a6ada446 100644 --- a/dashboard/src/views/ServicesView.vue +++ b/dashboard/src/views/ServicesView.vue @@ -103,7 +103,7 @@ async function refresh(id) { services[id].defaultMemoryLimit = result.defaultMemoryLimit; // we will poll until active - if (result.status !== 'active') servicesTimers[id] = setTimeout(refresh.bind(null, id), 3000); + if (result.status !== 'active' && !result.config.recoveryMode) servicesTimers[id] = setTimeout(refresh.bind(null, id), 3000); } const refreshBusy = ref(false);