From e3f66a6321fa73426ba8f36e603ea5e6dff2d24b Mon Sep 17 00:00:00 2001 From: fariouche Date: Tue, 2 Dec 2025 21:30:41 +0100 Subject: [PATCH] cleanup --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 345ebce..6f31054 100644 --- a/src/index.ts +++ b/src/index.ts @@ -71,7 +71,7 @@ function setupGracefulShutdown(server: KiCADMcpServer) { // Handle termination signals process.on('SIGINT', async () => { logger.info('Received SIGINT signal. Shutting down...'); - //await shutdownServer(server); + await shutdownServer(server); }); process.on('SIGTERM', async () => {