From d13fb158a1c1d20801283c6c6956e10ab5ce48a2 Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0O0o0oOoO00@users.noreply.github.com> Date: Fri, 17 Oct 2025 00:32:16 +0800 Subject: [PATCH] fix: remove argument from kwargs when stopping instance --- module/webui/process_manager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/module/webui/process_manager.py b/module/webui/process_manager.py index 09127ee98..b3a2fbc4c 100644 --- a/module/webui/process_manager.py +++ b/module/webui/process_manager.py @@ -251,6 +251,7 @@ class ProcessManager(ProcessManager): def stop(self, *args, **kwargs): InstanceWatcher.get_instance().remove_instance(self.config_name, remove_status_cache_file=kwargs.get("remove_status_cache_file", False)) + kwargs.pop("remove_status_cache_file", None) super().stop(*args, **kwargs) @property