From b323322be7730aa9d6f6b9fa6ebf51e8009ea55c Mon Sep 17 00:00:00 2001 From: Alex Plex Date: Sat, 8 Feb 2025 12:40:27 +0500 Subject: [PATCH] fix: add the ability for the server to stay connected --- libs/nodeplotlib/src/lib/server/plots/plots.gateway.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libs/nodeplotlib/src/lib/server/plots/plots.gateway.ts b/libs/nodeplotlib/src/lib/server/plots/plots.gateway.ts index 949fe81..f3efc48 100644 --- a/libs/nodeplotlib/src/lib/server/plots/plots.gateway.ts +++ b/libs/nodeplotlib/src/lib/server/plots/plots.gateway.ts @@ -63,9 +63,5 @@ export class PlotsGateway implements OnGatewayConnection, OnGatewayDisconnect { handleDisconnect(client: WebSocket) { console.log('[Nodeplotlib] client disconnected'); this.clientMap.delete(client); - - if (this.clientMap.size === 0) { - this.bridgeService.shutdown$.next(null); - } } }