ваше сообщение коммита

This commit is contained in:
2025-09-30 00:23:37 +03:00
parent ca718e3178
commit 4b03951b31
77 changed files with 17161 additions and 7255 deletions

View File

@@ -90,6 +90,11 @@ class DeploymentWebSocketService {
this.clients.get(ws.dleAddress).delete(ws);
if (this.clients.get(ws.dleAddress).size === 0) {
this.clients.delete(ws.dleAddress);
// Очищаем сессию деплоя если нет активных клиентов
if (this.deploymentSessions.has(ws.dleAddress)) {
console.log(`[DeploymentWS] Очистка сессии деплоя для DLE: ${ws.dleAddress}`);
this.deploymentSessions.delete(ws.dleAddress);
}
}
}
}