1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 13:29:25 +08:00

fix: remove argument from kwargs when stopping instance

This commit is contained in:
0O0o0oOoO00
2025-10-17 00:32:16 +08:00
parent e952ee22a5
commit d13fb158a1

View File

@@ -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