fix: prevent stopped servers from returning to running state

This commit is contained in:
2026-07-21 19:38:11 +02:00
parent 984992541c
commit 268734275a
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -613,11 +613,6 @@ export class ServerLifecycle {
logger.info(
"Stoppe leeren Server:",
server.name
);
this.serverManager.stopServer( this.serverManager.stopServer(
server.id server.id
+1 -1
View File
@@ -410,7 +410,7 @@ export class ServerRegistry {
if(srv.alive){ if(srv.alive && server.status !== "STOPPING"){
if(!server.startedAt){ if(!server.startedAt){